Aorin Posted October 23, 2018 Posted October 23, 2018 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
thatman84 Posted October 23, 2018 Posted October 23, 2018 Not heard of it before but then again im not a PC user. A script that is activated on keypress to then hit down arrow every 30s would do the job. Not sure you can hook into the video loop event but maybe Official Hyperspin Tutorials Playlist HS Android Overview & Install HS Android Base Pack Download My Tutorials
Aorin Posted October 23, 2018 Author Posted October 23, 2018 I tried finding some config line that would do the trick, but I couldn't,. Aorin
Kondorito Posted October 23, 2018 Posted October 23, 2018 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
Aorin Posted October 23, 2018 Author Posted October 23, 2018 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
Recommended Posts
Archived
This topic is now archived and is closed to further replies.