GoalStopper Posted October 22, 2004 Posted October 22, 2004 I need to be able to send an Esc key and a Pause key at the same time. Or if there is a way to hold down the Esc key and send the Pause key. Is this possible? thanks
Matt @ MPCS Posted October 22, 2004 Posted October 22, 2004 (edited) Have you tried reading the documentation?To hold a key down (generally only useful for games) Send("{a down}") ;Holds the A key down Send("{a up}") ;Releases the A keyI am not sure if this will work with Esc but you should try it.*** Matt @ MPCS Edited October 22, 2004 by Matt @ MPCS
CyberSlug Posted October 22, 2004 Posted October 22, 2004 (edited) This should work. See remarks in the documentation of the Send function for more info. Send("{Esc down}") Send("{Pause}") Send("{Esc up}") Edit: Dang, too slow in posting because I tested the keys Edited October 22, 2004 by CyberSlug Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
megahyperion Posted October 23, 2004 Posted October 23, 2004 I send 2 keys all the time for in game macros. example send ("!3") will trigger alt+3 you can also do send ("ALT{3}") type send into the search helpfile for a list of send commands.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now