Author Topic: AutoHotKey  (Read 431 times)

I need an autohotkey script that presses space every 5 seconds or so. That's literally it. Can someone hook me up?

Can't those razor or what ever the hell 600$ loving mini keyboard shortcut spell cast shortkey things do that?

Can't those razor or what ever the hell 600$ loving mini keyboard shortcut spell cast shortkey things do that?
And autohotkey does it for free. :I

Was just wonderin mate

Code: [Select]
#Persistent
SetTimer, PressSpaceBar, 5000
return

PressSpaceBar:
Send, {Space}
return

Code: [Select]
#Persistent
SetTimer, PressSpaceBar, 5000
return

PressSpaceBar:
Send, {Space}
return
Thanks