OUS Posted September 8, 2010 Posted September 8, 2010 Shortened version $i = 0 Do Send("{DOWN" & $i & "}") $i = $i + 1 Until $i = 3 Need to send down key +1 at the start of the loop
PsaltyDS Posted September 8, 2010 Posted September 8, 2010 "{DOWN0}", "{DOWN1}", etc. are not valid key definitions. Did you mean to hold a key down while sending another one? Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
JohnOne Posted September 8, 2010 Posted September 8, 2010 $i = 0 Do Send("{DOWN}") Send($i) $i += 1 Until $i = 3 AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
ofLight Posted September 8, 2010 Posted September 8, 2010 (edited) $i = 1 Do For $j = 1 to $i Send("{DOWN}") Next $i += 1 Until $i = 4 This works aswell $i = 1 Do $sSends = '{DOWN '&$i&'}' Send($sSends) $i += 1 Until $i = 4 Edited September 8, 2010 by ofLight There is always a butthead in the crowd, no matter how hard one tries to keep them out.......Volly
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