Aorin Posted October 23, 2018 Share 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. Link to comment Share on other sites More sharing options...
thatman84 Posted October 23, 2018 Share 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 Link to comment Share on other sites More sharing options...
Aorin Posted October 23, 2018 Author Share Posted October 23, 2018 I tried finding some config line that would do the trick, but I couldn't,. Link to comment Share on other sites More sharing options...
Kondorito Posted October 23, 2018 Share 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 Link to comment Share on other sites More sharing options...
Aorin Posted October 23, 2018 Author Share 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. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.