Jump to content

Jump to next game


Aorin

Recommended Posts

Posted

Does anyone know how to configure Hyperspin to jump to the very next game once a video is played? The roulette thing is nice but I want it to jump one game at a time.

Aorin

Posted

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

Posted

I'm not sure if I want a macro for that, I use them for PC Games and they do the job, I don't know, maybe it's hard coded in the frontend.

Aorin

Archived

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

×
×
  • Create New...