Guest poog Posted March 29, 2005 Posted March 29, 2005 Hi, I want to tell AutoIt to hold down the Left key for 200 milliseconds then stop, how can I do that? The help file doesn't seem to include this in the Send commands section?
zcoacoaz Posted March 29, 2005 Posted March 29, 2005 It includes it quite well but i have nothing to do so i will write a script for you even though you should be RTFMSend ( "{leftdown}" ) Sleep ( 200 ) Send ( "{leftup}" ) [font="Times"] If anyone remembers me, I am back. Maybe to stay, maybe not.----------------------------------------------------------------------------------------------------------[/font][font="Times"]Things I am proud of: Pong! in AutoIt | SearchbarMy website: F.R.I.E.S.A little website that is trying to get started: http://thepiratelounge.net/ (not mine)[/font][font="Times"] ----------------------------------------------------------------------------------------------------------[/font][font="Arial"]The newbies need to stop stealing avatars!!! It is confusing!![/font]
Guest poog Posted March 29, 2005 Posted March 29, 2005 It includes it quite well but i have nothing to do so i will write a script for you even though you should be RTFMSend ( "{leftdown}" ) Sleep ( 200 ) Send ( "{leftup}" )<{POST_SNAPBACK}>This is not working for me... any ideas why?
zcoacoaz Posted March 29, 2005 Posted March 29, 2005 (edited) i forgot the spaces Send ( "{left down}" ) Sleep ( 200 ) Send ( "{left up}" ) Edited March 29, 2005 by Xenogis [font="Times"] If anyone remembers me, I am back. Maybe to stay, maybe not.----------------------------------------------------------------------------------------------------------[/font][font="Times"]Things I am proud of: Pong! in AutoIt | SearchbarMy website: F.R.I.E.S.A little website that is trying to get started: http://thepiratelounge.net/ (not mine)[/font][font="Times"] ----------------------------------------------------------------------------------------------------------[/font][font="Arial"]The newbies need to stop stealing avatars!!! It is confusing!![/font]
phillip123adams Posted March 29, 2005 Posted March 29, 2005 Hi, I want to tell AutoIt to hold down the Left key for 200 milliseconds then stop, how can I do that? The help file doesn't seem to include this in the Send commands section?<{POST_SNAPBACK}>As Xenogis states in post #4. Or, another way (also noted in the help file for the Send function) is:opt("SendKeyDownDelay", 200) Send("{left}") opt("SendKeyDownDelay", 1)Or, do you want the left key to be pressed repeatedly for 200 milliseconds?$start = Timerinit() Opt("SendKeyDelay", 1) While TimerDiff($start) < 200 send("{Left}") wend Phillip
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