Thread: TableNavigator
View Single Post
  #9  
Old 02-11-2006, 09:18 PM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: A script you might like

[ QUOTE ]
just one anomaly left: sometimes (maybe 20% of time) the "Fold" checkbox just won't select, no idea why though? (and for some strange reason AutoResizer's "Auto-Post 1st BB" started failing).

[/ QUOTE ]

Maybe the new code I added? I haven't had any problems (mainly playing Stud now though, Hold'em is a bankroll killer for me [img]/images/graemlins/ooo.gif[/img]).

Modifiers are possible I believe (Sam posted something a few days ago I think).

Here's a cool hotkey I just wrote; it deals you in/out at every table:

Warning: This will check the auto-post blind checkbox´when dealing in.

Joy9::
Loop, Parse, table_list, `,
{
ControlGet, is_checked, checked, , Button5, ahk_id%a_loopfield%
Control, Check, , Button5, ahk_id%a_loopfield%
If is_checked = 0
{
Control, Check, , Button5, ahk_id%a_loopfield%
}
else
{
Control, Uncheck, , Button5, ahk_id%a_loopfield%
Control, Check, , Button3, ahk_id%a_loopfield%
}
}
return
Reply With Quote