View Single Post
  #3  
Old 05-05-2007, 05:07 PM
TreyOfLight TreyOfLight is offline
Senior Member
 
Join Date: Sep 2004
Location: You have what I\'m repping
Posts: 545
Default 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 />
Reply With Quote