Ok here is a 2nd version that lets me load 1 table with F1, or 2 with F2. It is still very limited though, in that I'm relying on mouse coordinates to open the tournament lobby and not actual text finding or anything specific like that.
This method also relies on the user filtering every game out except 6max and ultra turbo. You also have to make sure to click the 'Game' sort button once so that the 300 chip games are on top.
Any help in these matters would be awesome, but I'll keep at it myself and hopefully version 3 will be a bit more customizable.
APPokerSetup.ahk
F1::
SetTitleMatchMode, 2
WinActivate Absolute Poker - Logged in as 'XXXX' ;(put username here)
MouseClick, left, 181, 244 ; Double Click 300c game in Lobby
MouseClick, left, 181, 244
WinWait Holdem - 300 Chips, Register ; Tournament Lobby Screen
WinActivate
MouseClick, left, 448, 530
WinWait Absolute Poker,,, Logged ; Small popup
WinActivate Absolute Poker,,, Logged
MouseClick, left, 334, 169
WinWait Tournament Registration, ; Tournament Reg
MouseClick, left, 60, 200 ; Tourney Full btn
MouseClick, left, 162, 264
SetTitleMatchMode Slow ; Tourney Confirmation
WinWait Absolute Poker, OK,, ExcludeTitle Logged
WinActivate
;IfWinActive, Absolute Poker
MouseClick, left, 424, 178
WinWait Holdem - 300 Chips,,, Blinds ; Close Tournament Lobby
WinClose Holdem - 300 Chips,,, Blinds
return
F2::
SetTitleMatchMode, 2
WinActivate Absolute Poker - Logged in as 'XXXX' ;(put username here)
MouseClick, left, 181, 244 ; Double Click 300c game in Lobby
MouseClick, left, 181, 244
WinWait Holdem - 300 Chips, Register ; Tournament Lobby Screen
WinActivate
MouseClick, left, 448, 530
WinWait Absolute Poker,,, Logged ; Small popup
WinActivate Absolute Poker,,, Logged
MouseClick, left, 334, 169
WinWait Tournament Registration, ; Tournament Reg
MouseClick, left, 60, 200 ; Tourney Full btn
MouseClick, left, 162, 264
SetTitleMatchMode Slow ; Tourney Confirmation
WinWait Absolute Poker, OK,, ExcludeTitle Logged
WinActivate
;IfWinActive, Absolute Poker
MouseClick, left, 424, 178
WinWait Holdem - 300 Chips,,, Blinds ; Close Tournament Lobby
WinClose Holdem - 300 Chips,,, Blinds
; 2nd table
WinActivate Absolute Poker - Logged in as 'XXXX' ;(put username here)
MouseClick, left, 181, 258
MouseClick, left, 181, 258
WinWait Holdem - 300 Chips, Register
WinActivate
MouseClick, left, 448, 530
WinWait Absolute Poker,,, Logged
WinActivate Absolute Poker,,, Logged
MouseClick, left, 334, 169
WinWait Tournament Registration,
MouseClick, left, 60, 200
MouseClick, left, 162, 264
SetTitleMatchMode Slow
WinWait Absolute Poker, OK,, ExcludeTitle Logged
WinActivate
;IfWinActive, Absolute Poker
MouseClick, left, 424, 178
WinWait Holdem - 300 Chips,,, Blinds ; Close Tournament Lobby
WinClose Holdem - 300 Chips,,, Blinds
return