Guest Lotus2 Posted July 6, 2005 Posted July 6, 2005 well ive tried making this myself. I was able to make it so another key could do up twice. but i wasnt able to make the upkey do up twice. what would be the proper way to use this.
Moderators SmOke_N Posted July 6, 2005 Moderators Posted July 6, 2005 (edited) well ive tried making this myself.I was able to make it so another key could do up twice.but i wasnt able to make the upkey do up twice. what would be the proper way to use this.<{POST_SNAPBACK}>Up Arrow?Edit: And an oops! If it is the Up Arrow: Send("{UP}") Send("{UP}")Sorry, I didn't understand your post ... guess I still don't Edited July 6, 2005 by ronsrules Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
therks Posted July 6, 2005 Posted July 6, 2005 I think he wants his up key to double every time he presses it. So if he presses Up, it will send Up,Up. You'll need to set/unset the hotkey everytime you call it. Like this: HotKeySet('{UP}', 'DoubleUp') Func DoubleUp() HotKeySet('{UP}') Send('{UP}{UP}') HotKeySet('{UP}', 'DoubleUp') EndFunc My AutoIt Stuff | My Github
Moderators SmOke_N Posted July 6, 2005 Moderators Posted July 6, 2005 Nice, And that makes more sense now, I read that damn post like 20 times. Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
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