home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 November / Chip_2000-11_cd2.bin / sharewar / wincron / WinCron.CAB / sendkeys.txt < prev    next >
Encoding:
Text File  |  2000-04-22  |  2.5 KB  |  83 lines

  1. WinCron - Details for $SEND/$KEYS {keylist} parameter (1.40)
  2. =====================================================
  3.  
  4. FORMAT: $SEND "{Title}" {keylist}
  5. FORMAT: $KEYS {keylist}
  6.  
  7. Command:
  8. - The {Title} MUST be enclosed in quotes!
  9. - There must be a SPACE between the {title} and {keylist}
  10. - Everything after the SPACE will be sent. This includes additional
  11.   SPACES or QUOTES!
  12.  
  13. Keylist:
  14. - Each key is represented by one or more characters.
  15. - To specify a single keyboard character, use the character itself.
  16.  
  17.   For example:
  18.  
  19.     - To represent the letter A, use "A" for keylist (without quotes!).
  20.     - To represent more than one character, append each additional
  21.       character to the one preceding it.
  22.     - To represent the letters A, B, and C, use "ABC" for keylist.
  23.  
  24. - The plus sign (+), caret (^), percent sign (%), tilde (~), and
  25.   parentheses ( ) have special meanings. To specify one of these
  26.   characters, enclose it within braces ({}).
  27.  
  28.   For example:
  29.     - To specify the plus sign, use {+}.
  30.     - Square brackets ([ ]), must be enclosed in braces.
  31.     - Braces must ALSO be enclosed in braces!
  32.         { becomes {{}
  33.         } becomes {}}
  34.  
  35. To specify characters that aren't displayed when you press a key,
  36. such as ENTER or TAB, and keys that represent actions rather than
  37. characters, use the codes shown below:
  38.  
  39. Key        Code
  40. ---        ----
  41. BACKSPACE    {BACKSPACE}, {BS}, or {BKSP}
  42. BREAK        {BREAK}
  43. CAPS LOCK    {CAPSLOCK}
  44. DEL or DELETE    {DEL} or {DELETE}
  45. DOWN ARROW    {DOWN}
  46. END        {END}
  47. ENTER        {ENTER}or ~
  48. ESC        {ESC}
  49. HELP        {HELP}
  50. HOME        {HOME}
  51. INS or INSERT    {INSERT} or {INS}
  52. LEFT ARROW    {LEFT}
  53. NUM LOCK    {NUMLOCK}
  54. PAGE DOWN    {PGDN}
  55. PAGE UP        {PGUP}
  56. PRINT SCREEN    {PRTSC}
  57. RIGHT ARROW    {RIGHT}
  58. SCROLL LOCK    {SCROLLLOCK}
  59. TAB        {TAB}
  60. UP ARROW    {UP}
  61. F1 to F16    {F1} to {F16}
  62.  
  63. To specify keys combined with any combination of the SHIFT, CTRL, and
  64. ALT keys, precede the key code with one or more of the following codes:
  65.  
  66. Key    Code
  67. SHIFT    +
  68. CTRL     ^
  69. ALT    %
  70.  
  71. To specify that any combination of SHIFT, CTRL, and ALT should be held
  72. down while several other keys are pressed, enclose the code for those
  73. keys in parentheses. For example, to specify to hold down SHIFT while
  74. E and C are pressed, use "+(EC)". To specify to hold down SHIFT while
  75. E is pressed, followed by C without SHIFT, use "+EC".
  76.  
  77. To specify repeating keys, use the form {key number}. You must put a
  78. space between key and number. For example, {LEFT 42} means press the
  79. LEFT ARROW key 42 times; {h 10} means press H 10 times.
  80.  
  81. Note:  PRINT SCREEN key {PRTSC} cannot be sent to any application.
  82.  
  83. <END>