Login | |
|
 |
Re: SendKeys - Ctrl, Alt and And - 8/2/2004 12:17:08 AM
|
|
 |
|
| |
mbouchard
Posts: 1856
Score: 14
Joined: 5/15/2003
From: USA
Status: offline
|
Copied and pasted from the Windows Script Help file (down load from script center at www.technet.com) 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".
|
|
| |
|
|
|
| |
|
|
 |
|
 |
|
|