![]() |
|
#211
|
|||
|
|||
|
Once iWitness captured my instant messenger window and opened up chat windows filling each window with table names.
|
|
#212
|
|||
|
|||
|
[ QUOTE ]
wasn't working for v2.14, but works for v2.16 although it is now hijacking my browser when searching for tables. [/ QUOTE ] same here this happens when iWitness cant find a table-it will constantly scrolls thru the table-list in the lobby- when this happens it hijacks your browser and other apps inserting the table numbers incessantly-this makes using your browser nearly imposible-it happens quite often and is a serious bug. |
|
#213
|
|||
|
|||
|
bump???
|
|
#214
|
|||
|
|||
|
I haven't really gotten any version after 2.10 to work properly. I still stick to that version, and it works fine for bare bone mining.
Adde |
|
#215
|
|||
|
|||
|
Can we get "Stop" as a right click menu option when iWitness is in the system tray?
When iWitness gets into its "check all the tables but do nothing mood" it wrecks the interaction with other programs and itself. One can't even open iWitness to push the "Stop" button. Absent a way to stop the runaway behaviour there is nothing to do but let it run its course - an annoyance. |
|
#216
|
|||
|
|||
|
Heh. I had iWitness repeatedly hit the "Start/Stop Timer button in my PokerTracker.
|
|
#217
|
|||
|
|||
|
edit:
seems to have self-fixed wtf? but i'll take it. ____________________________________ I've scanned this thread and didn't see anyone with a similar problem, so excuse me if I'm being repetitive. I'm using iWitness for empire, and the only problem I have is a pretty minute one. When I first start iwitness it works like a charm, but when tables go below the # of players threshold i've set, it takes awhile to refresh the table (even though the # of players shows up in the client correctly. i.e. I'm mining 6max with min players=4, and iWitness shows 1 table correctly as having 2 players) and when it does refresh, it will reopen tables with fewer players than the paramaters I've set. I'm probably missing something basic (as is usually the case with me), but I really have nfc why this is happening. if anyone has any insight to this problem, help would be much appreciated. oh and yes, this program is awesome. a million thanks for writitng the script~ |
|
#218
|
|||
|
|||
|
Don't know if this has been suggested yet or not but it would be cool if all the tables being observed could be minimized to the system tray using "Trayit" so I can use my computer to do other things while observing Party tables.
I have no knowledge whatsoever of AHK or programming so this might be a bogus suggestion. Great program......Thanks!!! |
|
#219
|
|||
|
|||
|
[ QUOTE ]
Don't know if this has been suggested yet or not but it would be cool if all the tables being observed could be minimized to the system tray using "Trayit" so I can use my computer to do other things while observing Party tables. I have no knowledge whatsoever of AHK or programming so this might be a bogus suggestion. Great program......Thanks!!! [/ QUOTE ] Perhaps a simple WinHide command in AHK could solve this? I'll try it out right now... Adde |
|
#220
|
|||
|
|||
|
Yes, it works, but I don't want to dive into the iWitness code since I'm not that familiar with it. In the mean time, you could use this simple script to hide all tables that Party opens up. When you exit the script (in sys tray), all hidden tables are shown again.
Adde #SingleInstance IGNORE #Persistent OnExit, DoExit SetTimer, HideAll, 500 return HideAll: SetTitleMatchMode, 2 WinGet, pid, PID, PartyPoker.com: WinGet, id, list, Good Luck ahk_pid%pid% ahk_class #32770, , PartyPoker.com: Loop, %id% { thisID := id%a_index% WinHide, ahk_id%thisID% } return ShowAll: DetectHiddenWindows, on SetTitleMatchMode, 2 WinGet, pid, PID, PartyPoker.com: WinGet, id, list, Good Luck ahk_pid%pid% ahk_class #32770, , PartyPoker.com: Loop, %id% { thisID := id%a_index% WinShow, ahk_id%thisID% } return DoExit: gosub ShowAll ExitApp return |
![]() |
| Thread Tools | |
| Display Modes | |
|
|