byerly Posted January 7, 2006 Posted January 7, 2006 I'm trying to make a script that will hold down the space bar for about 10 seconds. while It is being held down, the script will need to press other buttons too. I tried Send( "{{SPACE} down}" ) and Opt("SendKeyDownDelay", 10000) send("{SPACE"} Opt("SendKeyDownDelay", 1) but neither worked. Please help me figure this out.
seandisanti Posted January 7, 2006 Posted January 7, 2006 I'm trying to make a script that will hold down the space bar for about 10 seconds. while It is being held down, the script will need to press other buttons too. I tried Send( "{{SPACE} down}" ) and Opt("SendKeyDownDelay", 10000) send("{SPACE"} Opt("SendKeyDownDelay", 1) but neither worked. Please help me figure this out.try this *untested Send("{SPACE DOWN}") $start = TimerInit() While TimerDiff($start) < 10000 sleep(100) WEnd Send("{SPACE UP}")
byerly Posted January 7, 2006 Author Posted January 7, 2006 Thanks, that worked. I actually just used the Send("{SPACE DOWN}")/Send("{SPACE UP") part, the rest of the program set up the timing already.
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