Jump to content
Unfortunately we had to take download section back offline temporarily. We should have it working normally soon.

Jump to next game


Aorin

Recommended Posts

You could use something like the below AHK.
This will press the Down key every 30 seconds if the idle time in the app is equal or over 2 minutes. You can change to any time you want in miliseconds.
I havent tested it.

 

#IfWinActive, Hyperspin
SetTimer, PressTheKey, 30000
Return

PressTheKey:
    if (A_TimeIdle >= 1200000)
        Send, {Down}
Return

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...