Sends simulated keystrokes to the active window.
Send ( "keys" [, flag] )
Parameters
keys | The sequence of keys to send. |
flag | [optional] Changes how "keys" is processed: flag = 0 (default), Text contains special characters like + and ! to indicate SHIFT and ALT key presses. flag = 1, keys are sent raw. |
Return Value
None.
Remarks
See the Appendix for some tips on using Send. AutoIt can send all ASCII and Extended ASCII characters (0-255), to send UNICODE characters you must use the "ASC" option and the code of the character you wish to send (see {ASC} at the bottom of the table below).Send Command (if zero flag) | Resulting Keypress |
{!} | ! |
{#} | # |
{+} | + |
{^} | ^ |
{{} | { |
{}} | } |
{SPACE} | SPACE |
{ENTER} | ENTER key on the main keyboard |
{ALT} | ALT |
{BACKSPACE} or {BS} | BACKSPACE |
{DELETE} or {DEL} | DELETE |
{UP} | Cursor up |
{DOWN} | Cursor down |
{LEFT} | Cursor left |
{RIGHT} | Cursor right |
{HOME} | HOME |
{END} | END |
{ESCAPE} or {ESC} | ESCAPE |
{INSERT} or {INS} | INS |
{PGUP} | PageUp |
{PGDN} | PageDown |
{F1} - {F12} | Function keys |
{TAB} | TAB |
{PRINTSCREEN} | Print Screen key |
{LWIN} | Left Windows key |
{RWIN} | Right Windows key |
{NUMLOCK on} | NUMLOCK (on/off/toggle) |
{CAPSLOCK off} | CAPSLOCK (on/off/toggle) |
{SCROLLLOCK toggle} | SCROLLLOCK (on/off/toggle) |
{CTRLBREAK} | Ctrl+Break |
{PAUSE} | PAUSE |
{NUMPAD0} - {NUMPAD9} | Numpad digits |
{NUMPADMULT} | Numpad Multiply |
{NUMPADADD} | Numpad Add |
{NUMPADSUB} | Numpad Subtract |
{NUMPADDIV} | Numpad Divide |
{NUMPADDOT} | Numpad period |
{NUMPADENTER} | Enter key on the numpad |
{APPSKEY} | Windows App key |
{LALT} | Left ALT key |
{RALT} | Right ALT key |
{LCTRL} | Left CTRL key |
{RCTRL} | Right CTRL key |
{LSHIFT} | Left Shift key |
{RSHIFT} | Right Shift key |
{SLEEP} | Computer SLEEP key |
{ALTDOWN} | Holds the ALT key down until {ALTUP} is sent |
{SHIFTDOWN} | Holds the SHIFT key down until {SHIFTUP} is sent |
{CTRLDOWN} | Holds the CTRL key down until {CTRLUP} is sent |
{LWINDOWN} | Holds the left Windows key down until {LWINUP} is sent |
{RWINDOWN} | Holds the right Windows key down until {RWINUP} is sent |
{ASC nnnn} | Send the ALT+nnnn key combination |
{BROWSER_BACK} | 2000/XP Only: Select the browser "back" button |
{BROWSER_FORWARD} | 2000/XP Only: Select the browser "forward" button |
{BROWSER_REFRESH} | 2000/XP Only: Select the browser "refresh" button |
{BROWSER_STOP} | 2000/XP Only: Select the browser "stop" button |
{BROWSER_SEARCH} | 2000/XP Only: Select the browser "search" button |
{BROWSER_FAVORITES} | 2000/XP Only: Select the browser "favorites" button |
{BROWSER_HOME} | 2000/XP Only: Launch the browser and go to the home page |
{VOLUME_MUTE} | 2000/XP Only: Mute the volume |
{VOLUME_DOWN} | 2000/XP Only: Reduce the volume |
{VOLUME_UP} | 2000/XP Only: Increase the volume |
{MEDIA_NEXT} | 2000/XP Only: Select next track in media player |
{MEDIA_PREV} | 2000/XP Only: Select previous track in media player |
{MEDIA_STOP} | 2000/XP Only: Stop media player |
{MEDIA_PLAY_PAUSE} | 2000/XP Only: Play/pause media player |
{LAUNCH_MAIL} | 2000/XP Only: Launch the email application |
{LAUNCH_MEDIA} | 2000/XP Only: Launch media player |
{LAUNCH_APP1} | 2000/XP Only: Launch user app1 |
{LAUNCH_APP2} | 2000/XP Only: Launch user app2 |
Send("{TAB}") | Navigate to next control (button, checkbox, etc) |
Send("+{TAB}") | Navigate to previous control. |
Send("^{TAB}") | Navigate to next WindowTab (on a Tabbed dialog window) |
Send("^+{TAB}") | Navigate to previous WindowTab. |
Send("{SPACE}") | Can be used to toggle a checkbox or click a button. |
Send("{+}") | Usually checks a checkbox (if it's a "real" checkbox.) |
Send("{-}") | Usually unchecks a checkbox. |
Send("{NumPadMult}") | Recursively expands folders in a SysTreeView32. |
Send("{DOWN}") | Move down a menu. |
Send("{UP}") | Move up a menu. |
Send("{LEFT}") | Move leftward to new menu or expand a submenu. |
Send("{RIGHT}") | Move rightward to new menu or collapse a submenu. |
Related
SendAttachmode (Option), SendKeyDelay (Option), SendKeyDownDelay (Option), ControlSend
Example
Send("#r")
WinWaitActive("Run")
Send("notepad.exe{Enter}")
WinWaitActive("Untitled -")
Send("Today's time/date is {F5}")