| View previous topic :: View next topic |
| Author |
Message |
Nex Guest
|
Posted: Sun Dec 16, 2007 1:13 am Post subject: Spacebar Script Help |
|
|
Hello. I returned to using hotkey, and i'm having trouble on a script. I want to be able to have hotkey hit the spacebar once every 5 minutes or so, but i don't remember how to do it.
any help would be appreciated. |
|
| Back to top |
|
 |
leggah
Joined: 14 Oct 2007 Posts: 44
|
Posted: Sun Dec 16, 2007 1:28 am Post subject: |
|
|
I doubt you could forget that xD but here:
| Code: |
^q:: ;hotkey
Loop ; Forever
{
Send {Space}
Sleep 300000 ; 5 minutes
}
return
$F12::ExitApp ; Kill
|
|
|
| Back to top |
|
 |
Nex Guest
|
Posted: Sun Dec 16, 2007 1:31 am Post subject: |
|
|
| thanks so much for the help! believe me, i havent used hotkey in AGES |
|
| Back to top |
|
 |
|