|
帮助中写得非常完善,比绝大多数的帖子中的都要完善多了~~
单个键的如下:
Some keystrokes do not generate characters (such as ENTER and TAB). Some keystrokes represent actions (such as BACKSPACE and BREAK). To send these kinds of keystrokes, send the arguments shown in the following table:
Key | Argument | BACKSPACE | {BACKSPACE}, {BS}, or {BKSP} | BREAK | {BREAK} | CAPS LOCK | {CAPSLOCK} | DEL or DELETE | {DELETE} or {DEL} | DOWN ARROW | {DOWN} | END | {END} | ENTER | {ENTER} or ~ | ESC | {ESC} | HELP | {HELP} | HOME | {HOME} | INS or INSERT | {INSERT} or {INS} | LEFT ARROW | {LEFT} | NUM LOCK | {NUMLOCK} | PAGE DOWN | {PGDN} | PAGE UP | {PGUP} | PRINT SCREEN | {PRTSC} | RIGHT ARROW | {RIGHT} | SCROLL LOCK | {SCROLLLOCK} | TAB | {TAB} | UP ARROW | {UP} | F1 | {F1} | F2 | {F2} | F3 | {F3} | F4 | {F4} | F5 | {F5} | F6 | {F6} | F7 | {F7} | F8 | {F8} | F9 | {F9} | F10 | {F10} | F11 | {F11} | F12 | {F12} | F13 | {F13} | F14 | {F14} | F15 | {F15} | F16 | {F16} |
To send keyboard characters that are comprised of a regular keystroke in combination with a SHIFT, CTRL, or ALT, create a compound string argument that represents the keystroke combination. You do this by preceding the regular keystroke with one or more of the following special characters:
Key | Special Character | SHIFT | + | CTRL | ^ | ALT | % |
组合键就看这里
Note When used this way, these special characters are not enclosed within a set of braces. To specify that a combination of SHIFT, CTRL, and ALT should be held down while several other keys are pressed, create a compound string argument with the modified keystrokes enclosed in parentheses. For example, to send the keystroke combination that specifies that the SHIFT key is held down while: - e and c are pressed, send the string argument "+(ec)".
- e is pressed, followed by a lone c (with no SHIFT), send the string argument "+ec".
|
|