Hi. I want to fix this for draw games so that the table comes into and holds focus on drawing decisions ('Discard x Cards' button is visible). Just dled the sourcecode and I think this is the part I need to edit:
Code:
; if this table still has pending action on it, then activate it
; check if the fold button OR betting box OR pixel of pending action button is visible on this table
FoldButtonFlag := TablePendingAction(NextTableId)
; if the ImBackButton is visible
;ImBackButtonFlag := ButtonVisible("ButtonImBack", NextTableId) ; need == 1 ??????????
; find out whether this is a ring or tournament table (needed below in the auto preset bet check below)
; RingOrTournament := TableRingOrTournament(NextTableId)
; check if the bet slider is visible - this is checked in FoldButtonFlag above !!!!!!!!!
;BoxBetEditFlag := ControlVisible("BoxBetEdit",WinId)
;outputdebug, in tablepending 3 FoldButtonFlag:%FoldButtonFlag% ImBackButtonFlag:%ImBackButtonFlag% RingOrTournament:%RingOrTournament%
; activate this table IF pending action
if (FoldButtonFlag)
{
; activate this table
WinActivate, ahk_id%NextTableId%
Help plz