Thread: TableNavigator
View Single Post
  #899  
Old 04-02-2007, 08:12 AM
canta canta is offline
Member
 
Join Date: Sep 2006
Posts: 95
Default Re: TableNavigator

All tables including the lobby starts with "Poker-", including the lobby
All tables have ahk_class POPUP_INT_DLG_WINDOW.
Lobby have ahk_class GFX_INT_DLG_WINDOW_MAIN_PrimaPokerNetwork
Still wont recognise. This is what i have so far:

lobbyRedNines() {
SetTitleMatchMode 1
WinGet, id, id, ahk_class GFX_INT_DLG_WINDOW_MAIN_PrimaPokerNetwork
return id
}

tablesRedNines(lobby) {
SetTitleMatchMode 1
WinGet, pid, pid, ahk_id%lobby%
WinGet, list, list, Poker - ahk_class POPUP_INT_DLG_WINDOW
Loop % list
tables := list%a_index%!=lobby
? addToList(tables, list%a_index%)
: tables
return tables
}
Reply With Quote