Re: TableNavigator
Give this a shot. It's because of the new "Layout" button that all the button numbers increased by one. You can figure this stuff out with the Window Spy utility that comes with AutoHotkey. You just launch it, mouse over whatever button you want to know the number of, and read the result out of the Window Spy window.
<font class="small">Code:</font><hr /><pre>
FoldFullTilt(id) {
string_list = FTCButton12|FTCButton26
match_list = 3|3
clickList(string_list, match_list, id)
}
CallFullTilt(id) {
string_list = FTCButton13|FTCButton28|FTCButton12
match_list = 3|3|3
clickList(string_list, match_list, id)
}
RaiseFullTilt(id) {
string_list = FTCButton14|FTCButton27
match_list = 3|3
clickList(string_list, match_list, id)
}
IsTableWaitingFullTilt(id) {
return ( IsVisCtrl("FTCButton12", id) )
}
PotFullTilt(id) {
ControlClick, FTCButton22, ahk_id%id%
ControlGetText, Pot, Edit1, ahk_id%id%
return Pot
}
</pre><hr />
|