simple table nav for Bet Pot AHK
Thanks for this AHK. I tried TableNavigator but it doesn't work very well with multimonitors and seems overgrown.
I added a function to BetPot to get basic table nav functionality. It only goes in one direction but you can alt-tab back one spot if you go too far.
(put these lines at the end of the hotkey section)
<font class="small">Code:</font><hr /><pre>
~^TAB::
Next(getid())
return
;-------------- END OF HOTKEY SETUP SETCTION --------------------
Next(id)
{
IfWinExist, ahk_id%id% ahk_group StarsTables
{
GroupActivate, StarsTables
}
Else IfWinExist, ahk_id%id% ahk_group FullTiltTables
{
GroupActivate, FullTiltTables
}
Else IfWinExist, ahk_id%id% ahk_group PartyTables
{
GroupActivate, PartyTables
}
Else IfWinExist, ahk_id%id% ahk_group CryptoTables
{
GroupActivate, CryptoTables
}
Else IfWinExist, ahk_id%id% ahk_group UBTables
{
GroupActivate, UBTables
}
}
</pre><hr />
|