[FONT="]To send the ASCII value A (same as pressing ALT+065 on the numeric keypad)[/FONT] [FONT="]Send("{ASC 065}")[/FONT] [FONT="](When using 2 digit ASCII codes you must use a leading 0, otherwise an obsolete 437 code page is used).[/FONT] [FONT="]To send UNICODE characters enter the character code, for example this sends a Chinese character[/FONT] [FONT="]Send("{ASC 2709}")[/FONT] [FONT="]Single keys can also be repeated, e.g.[/FONT] [FONT="]Send("{DEL 4}") ;Presses the DEL key 4 times Send("{S 30}") ;Sends 30 'S' characters Send("+{TAB 4}") ;Presses SHIFT+TAB 4 times[/FONT] [FONT="]To hold a key down (generally only useful for games)[/FONT] [FONT="]Send("{a down}") ;Holds the A key down Send("{a up}") ;Releases the A key[/FONT] [FONT="]If you with to use a variable for the count, try [/FONT] [FONT="]$n = 4 Send("+{TAB " & $n & "}")[/FONT] [FONT="]If you wish to send the ASCII value A four times, then try [/FONT] [FONT="]$x = Chr(65) Send("{" & $x & " 4}")[/FONT] [FONT="]Most laptop computer keyboards have a special Fn key. This key cannot be simulated. Note, by setting the flag parameter to 1 the "keys" parameter is sent RAW. This is useful when you want to send some text copied from a variable and you want the text sent exactly as written. Send is quite useful because windows can be navigated without needing a mouse. For example, open Folder Options (in the control panel) and try the following:[/FONT] [FONT="]Send("{TAB}")[/FONT] [FONT="]Navigate to next control (button, checkbox, etc)[/FONT] [FONT="]Send("+{TAB}")[/FONT] [FONT="]Navigate to previous control.[/FONT] [FONT="]Send("^{TAB}")[/FONT] [FONT="]Navigate to next WindowTab (on a Tabbed dialog window)[/FONT] [FONT="]Send("^+{TAB}")[/FONT] [FONT="]Navigate to previous WindowTab.[/FONT] [FONT="]Send("{SPACE}")[/FONT] [FONT="]Can be used to toggle a checkbox or click a button.[/FONT] [FONT="]Send("{+}")[/FONT] [FONT="]Usually checks a checkbox (if it's a "real" checkbox.)[/FONT] [FONT="]Send("{-}")[/FONT] [FONT="]Usually unchecks a checkbox.[/FONT] [FONT="]Send("{NumPadMult}")[/FONT] [FONT="]Recursively expands folders in a SysTreeView32. [/FONT] [FONT="] Use Alt-key combos to access menu items. Also, open Notepad and try the following:[/FONT] [FONT="]Send("!f")[/FONT] [FONT="]Send Alt+f, the access key for Notepad's file menu. Try other letters![/FONT] [FONT="]Send("{DOWN}")[/FONT] [FONT="]Move down a menu.[/FONT] [FONT="]Send("{UP}")[/FONT] [FONT="]Move up a menu.[/FONT] [FONT="]Send("{LEFT}")[/FONT] [FONT="]Move leftward to new menu or expand a submenu.[/FONT] [FONT="]Send("{RIGHT}")[/FONT] [FONT="]Move rightward to new menu or collapse a submenu.[/FONT] [FONT="] See Windows' Help--press Win+F1--for a complete list of keyboard shortcuts if you don't know the importance of Alt+F4, PrintScreen, Ctrl+C, and so on. [/FONT] [FONT="]Send Command (if zero flag)[/FONT][FONT="][/FONT] [FONT="]Resulting Keypress[/FONT][FONT="][/FONT] [FONT="]{!}[/FONT] [FONT="]![/FONT] [FONT="]{#}[/FONT] [FONT="]#[/FONT] [FONT="]{+}[/FONT] [FONT="]+[/FONT] [FONT="]{^}[/FONT] [FONT="]^[/FONT] [FONT="]{{}[/FONT] [FONT="]{[/FONT] [FONT="]{}}[/FONT] [FONT="]}[/FONT] [FONT="]{SPACE}[/FONT] [FONT="]SPACE[/FONT] [FONT="]{ENTER}[/FONT] [FONT="]ENTER key on the main keyboard[/FONT] [FONT="]{ALT}[/FONT] [FONT="]ALT[/FONT] [FONT="]{BACKSPACE} or {BS}[/FONT] [FONT="]BACKSPACE[/FONT] [FONT="]{DELETE} or {DEL}[/FONT] [FONT="]DELETE[/FONT] [FONT="]{UP}[/FONT] [FONT="]Up arrow[/FONT] [FONT="]{DOWN}[/FONT] [FONT="]Down arrow[/FONT] [FONT="]{LEFT}[/FONT] [FONT="]Left arrow[/FONT] [FONT="]{RIGHT}[/FONT] [FONT="]Right arrow[/FONT] [FONT="]{HOME}[/FONT] [FONT="]HOME[/FONT] [FONT="]{END}[/FONT] [FONT="]END[/FONT] [FONT="]{ESCAPE} or {ESC}[/FONT] [FONT="]ESCAPE[/FONT] [FONT="]{INSERT} or {INS}[/FONT] [FONT="]INS[/FONT] [FONT="]{PGUP}[/FONT] [FONT="]PGUP[/FONT] [FONT="]{PGDN}[/FONT] [FONT="]PGDN[/FONT] [FONT="]{F1} - {F12}[/FONT] [FONT="]Function keys[/FONT] [FONT="]{TAB}[/FONT] [FONT="]TAB[/FONT] [FONT="]{PRINTSCREEN}[/FONT] [FONT="]PRINTSCR[/FONT] [FONT="]{LWIN}[/FONT] [FONT="]Left Windows key[/FONT] [FONT="]{RWIN}[/FONT] [FONT="]Right Windows key[/FONT] [FONT="]{NUMLOCK}[/FONT] [FONT="]NUMLOCK[/FONT] [FONT="]{BREAK}[/FONT] [FONT="]for Ctrl+Break processing[/FONT] [FONT="]{PAUSE}[/FONT] [FONT="]PAUSE[/FONT] [FONT="]{CAPSLOCK}[/FONT] [FONT="]CAPSLOCK[/FONT] [FONT="]{NUMPAD0} - {NUMPAD9}[/FONT] [FONT="]Numpad digits[/FONT] [FONT="]{NUMPADMULT}[/FONT] [FONT="]Numpad Multiply[/FONT] [FONT="]{NUMPADADD}[/FONT] [FONT="]Numpad Add[/FONT] [FONT="]{NUMPADSUB}[/FONT] [FONT="]Numpad Subtract[/FONT] [FONT="]{NUMPADDIV}[/FONT] [FONT="]Numpad Divide[/FONT] [FONT="]{NUMPADDOT}[/FONT] [FONT="]Numpad period[/FONT] [FONT="]{NUMPADENTER}[/FONT] [FONT="]Enter key on the numpad[/FONT] [FONT="]{APPSKEY}[/FONT] [FONT="]Windows App key[/FONT] [FONT="]{LALT}[/FONT] [FONT="]Left ALT key[/FONT] [FONT="]{RALT}[/FONT] [FONT="]Right ALT key[/FONT] [FONT="]{LCTRL}[/FONT] [FONT="]Left CTRL key[/FONT] [FONT="]{RCTRL}[/FONT] [FONT="]Right CTRL key[/FONT] [FONT="]{LSHIFT}[/FONT] [FONT="]Left Shift key[/FONT] [FONT="]{RSHIFT}[/FONT] [FONT="]Right Shift key[/FONT] [FONT="]{SLEEP}[/FONT] [FONT="]Computer SLEEP key[/FONT] [FONT="]{ALTDOWN}[/FONT] [FONT="]Holds the ALT key down until {ALTUP} is sent[/FONT] [FONT="]{SHIFTDOWN}[/FONT] [FONT="]Holds the SHIFT key down until {SHIFTUP} is sent[/FONT] [FONT="]{CTRLDOWN}[/FONT] [FONT="]Holds the CTRL key down until {CTRLUP} is sent[/FONT] [FONT="]{LWINDOWN}[/FONT] [FONT="]Holds the left Windows key down until {LWINUP} is sent[/FONT] [FONT="]{RWINDOWN}[/FONT] [FONT="]Holds the right Windows key down until {RWINUP} is sent[/FONT] [FONT="]{ASC nnnn}[/FONT] [FONT="]Send the ALT+nnnn key combination[/FONT] [FONT="]{BROWSER_BACK}[/FONT] [FONT="]2000/XP Only: Select the browser "back" button[/FONT] [FONT="]{BROWSER_FORWARD}[/FONT] [FONT="]2000/XP Only: Select the browser "forward" button[/FONT] [FONT="]{BROWSER_REFRESH}[/FONT] [FONT="]2000/XP Only: Select the browser "refresh" button[/FONT] [FONT="]{BROWSER_STOP}[/FONT] [FONT="]2000/XP Only: Select the browser "stop" button[/FONT] [FONT="]{BROWSER_SEARCH}[/FONT] [FONT="]2000/XP Only: Select the browser "search" button[/FONT] [FONT="]{BROWSER_FAVORITES}[/FONT] [FONT="]2000/XP Only: Select the browser "favorites" button[/FONT] [FONT="]{BROWSER_HOME}[/FONT] [FONT="]2000/XP Only: Launch the browser and go to the home page[/FONT] [FONT="]{VOLUME_MUTE}[/FONT] [FONT="]2000/XP Only: Mute the volume[/FONT] [FONT="]{VOLUME_DOWN}[/FONT] [FONT="]2000/XP Only: Reduce the volume[/FONT] [FONT="]{VOLUME_UP}[/FONT] [FONT="]2000/XP Only: Increase the volume[/FONT] [FONT="]{MEDIA_NEXT}[/FONT] [FONT="]2000/XP Only: Select next track in media player[/FONT] [FONT="]{MEDIA_PREV}[/FONT] [FONT="]2000/XP Only: Select previous track in media player[/FONT] [FONT="]{MEDIA_STOP}[/FONT] [FONT="]2000/XP Only: Stop media player[/FONT] [FONT="]{MEDIA_PLAY_PAUSE}[/FONT] [FONT="]2000/XP Only: Play/pause media player[/FONT] [FONT="]{LAUNCH_MAIL}[/FONT] [FONT="]2000/XP Only: Launch the email application[/FONT] [FONT="]{LAUNCH_MEDIA}[/FONT] [FONT="]2000/XP Only: Launch media player[/FONT] [FONT="]{LAUNCH_APP1}[/FONT] [FONT="]2000/XP Only: Launch user app1[/FONT] [FONT="]{LAUNCH_APP2}[/FONT] [FONT="]2000/XP Only: Launch user app2[/FONT] This is a good refrance guide for sendkeys.send list however I am not the orignal poster I found this a long time ago but it is a good refrence guide so I thought I would post it here as well Kind Regards Bradley