Jump to content

Holding down space


 Share

Recommended Posts

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.

Link to comment
Share on other sites

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}")
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...