![]() |
|
#891
|
|||
|
|||
|
[ QUOTE ]
Oh, an issue with tablenav: when you leave tables at FullTilt, you don't actually leave your seat. It just closes the window. This can limit your number of tables since you have to wait for yourself to time out. [/ QUOTE ] Yeah, this is a stupid behavior of the FT software. I can think of no scenario where you would want to close a table but remain seated there. With the fancy new plug-in architecture of TN, it should be easy to fix [img]/images/graemlins/smile.gif[/img] One must click "Stand Up" (FTCButton7) prior to closing table to fix this. |
|
#892
|
|||
|
|||
|
The BetPot 0.2j download is on overcards.com.
It should now correctly detect Table Navigator's selected window, no matter where your mouse may be. Roland, I defer to your expertise... white-space problem, bug or feature? Worth posting for attention of AHK Chris? dave. |
|
#893
|
|||
|
|||
|
[ QUOTE ]
Roland, I defer to your expertise... white-space problem, bug or feature? Worth posting for attention of AHK Chris? [/ QUOTE ] Well, it took a long time to find, but this was the problem: You had a space between the first 'WinExist' and the bracket: [ QUOTE ] If ! WinExist ("blue_bar ahk_class AutoHotkeyGUI") [/ QUOTE ] This is definitely not a bug... Looks like you somehow got rid of that space without realizing it was the problem and then blamed it all on an empty line? [img]/images/graemlins/smile.gif[/img] |
|
#894
|
|||
|
|||
|
[ QUOTE ]
Looks like Roland is back!!!!!!!!!!! [/ QUOTE ] Thanks for fixing TableNavigator while I was away... as you'll see this will be a lot easier to do from now on. [img]/images/graemlins/smile.gif[/img] |
|
#895
|
|||
|
|||
|
[ QUOTE ]
[ QUOTE ] Oh, an issue with tablenav: when you leave tables at FullTilt, you don't actually leave your seat. It just closes the window. This can limit your number of tables since you have to wait for yourself to time out. [/ QUOTE ] Yeah, this is a stupid behavior of the FT software. I can think of no scenario where you would want to close a table but remain seated there. With the fancy new plug-in architecture of TN, it should be easy to fix [img]/images/graemlins/smile.gif[/img] One must click "Stand Up" (FTCButton7) prior to closing table to fix this. [/ QUOTE ] Dammit... that command is one of the few commands I left in the main script; didn't think it made much sense to have the same function over and over again... Easy enough to fix though. |
|
#896
|
|||
|
|||
|
YESSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS
my wrist thanks you sir. |
|
#897
|
|||
|
|||
|
[ QUOTE ]
Yeah, I'll definitely write that guide and then you can write the Prima plug in [/ QUOTE ] Alright, i gave it a shot and have a problem with function tablesSomeCasino(Lobby) I got the lobby to minimize with your test.ahk in TableNavigatorGuide(wohoo), but i cant get TN to recognise the tables(grrrr). What should i write in this line: WinGet, list, list, ????? The window spy says this: >>>>>>>>>>( Window Title & Class )<<<<<<<<<<< Poker - (6 Seat Table) - MyScreenName - Blinds $1/$2 Ingvar [Hold 'em Real Money No Limit] ahk_class POPUP_INT_DLG_WINDOW btw, here is LobbySomeCasino: lobbyRedNines() { SetTitleMatchMode 1 WinGet, id, id, ahk_class GFX_INT_DLG_WINDOW_MAIN_PrimaPokerNetwork return id } and i found the coordinates of the rest of the functions also, just not to get TN to recognise tables, grrrrr. |
|
#898
|
|||
|
|||
|
Do all window titles start with the string "Poker -"?
Is the ahk_class the same for all tables? SetTitleMatchMode, 1 If so, this should work: WinGet, id, id, Poker - ahk_classPOPUP_INT_DLG_WINDOW |
|
#899
|
|||
|
|||
|
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 } |
|
#900
|
|||
|
|||
|
Try:
WinGet, id, id, Poker - ahk_pid%pid% |
![]() |
|
|