Two Plus Two Newer Archives  

Go Back   Two Plus Two Newer Archives > Internet Gambling > Software
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #221  
Old 05-10-2006, 08:43 PM
yellowbastard yellowbastard is offline
Senior Member
 
Join Date: Jun 2005
Location: Atlanta, Ga.
Posts: 471
Default Re: iWitness v2

[ QUOTE ]
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.

[/ QUOTE ]

Awesome......thank you so much

Is there a way to cause the script to force the main Party interface into the system tray?
Reply With Quote
  #222  
Old 05-10-2006, 08:59 PM
Adde Adde is offline
Senior Member
 
Join Date: Oct 2002
Location: Sweden
Posts: 2,453
Default Re: iWitness v2

[ QUOTE ]
[ QUOTE ]
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.

[/ QUOTE ]

Awesome......thank you so much

Is there a way to cause the script to force the main Party interface into the system tray?

[/ QUOTE ]

I don't think so.

Adde
Reply With Quote
  #223  
Old 05-11-2006, 01:27 AM
Hobbs. Hobbs. is offline
Senior Member
 
Join Date: May 2005
Location: Not Boston
Posts: 5,095
Default Re: iWitness v2

Adde,

Noob question, but where do I add this script? Somewhere in the iwitness code?
Reply With Quote
  #224  
Old 05-11-2006, 01:32 AM
jukofyork jukofyork is offline
Senior Member
 
Join Date: Sep 2004
Location: Leeds, UK.
Posts: 2,551
Default Re: iWitness v2

[ QUOTE ]
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

[/ QUOTE ]
Cool, I've been looking for a way to hide the HH window for a while, as PokerManager reads from them rather than the log files (hopefully it can still read from a hidden window).

Juk [img]/images/graemlins/smile.gif[/img]
Reply With Quote
  #225  
Old 05-11-2006, 05:54 AM
Adde Adde is offline
Senior Member
 
Join Date: Oct 2002
Location: Sweden
Posts: 2,453
Default Re: iWitness v2

[ QUOTE ]
Adde,

Noob question, but where do I add this script? Somewhere in the iwitness code?

[/ QUOTE ]

Add it to a new script file. For instance "HidePartyTables.ahk".

[ QUOTE ]
(1) Download and install Autohotkey.

(2) Right-click desktop (or whatever location on your disk), choose New > Autohotkey Script.

(3) Right-click file, choose Edit Script.

(4) Paste in whatever script, save and close.

(5) Double-click file to run script.

[/ QUOTE ]

Adde
Reply With Quote
  #226  
Old 05-11-2006, 12:36 PM
wmonfor wmonfor is offline
Senior Member
 
Join Date: Jan 2006
Location: the Copa, waiting for next year
Posts: 736
Default Re: iWitness v2

Great program, i really appreciate it.

However, i have a question. Where in the [censored] is the tray menu? I've been looking for half an hour and i can't find it. iWitness is only opening 4 tables, and the tray menu seems to be the way to fix that, but i can't find it for the life of me.

please be gentle.
Reply With Quote
  #227  
Old 05-11-2006, 12:46 PM
Adde Adde is offline
Senior Member
 
Join Date: Oct 2002
Location: Sweden
Posts: 2,453
Default Re: iWitness v2

[ QUOTE ]
Great program, i really appreciate it.

However, i have a question. Where in the [censored] is the tray menu? I've been looking for half an hour and i can't find it. iWitness is only opening 4 tables, and the tray menu seems to be the way to fix that, but i can't find it for the life of me.

please be gentle.

[/ QUOTE ]

Hehe, Tenacious D has a song where they promote "gentle" treatment, but I won't get into more details. [img]/images/graemlins/smile.gif[/img]

If you aren't logged in to Partypoker you can only open 4 tables; if you are logged in you can open 10 Partypoker tables. I suspect that is the case.

The system tray is located on the bottom right part of your screen, in the taskbar along with the clock. If you see a little left-pointing arrow (<&lt, this indicates that some icons are hidden; click the arrow to see them.

Adde
Reply With Quote
  #228  
Old 05-11-2006, 12:49 PM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: iWitness v2

[ QUOTE ]
Hehe, Tenacious D has a song where they promote "gentle" treatment

[/ QUOTE ]

[img]/images/graemlins/grin.gif[/img]
Reply With Quote
  #229  
Old 05-15-2006, 02:39 PM
Dudd Dudd is offline
Senior Member
 
Join Date: Sep 2004
Posts: 3,048
Default Re: iWitness v2

Hmm, I'm having some trouble getting this to work. I seem to be having the ########################Target didn't match table_name error in the log files. What is happening is that 1 or 2 windows will open, and from that point on it will just scroll through the remaining tables without opening. What's weird is that it worked perfectly once, but since then, no go. I tried inserting a sleep 500 line that someone mentioned up above, but that doesn't seem to make a difference. Has this problem been figured out yet, and if so, what do I need to do?
Reply With Quote
  #230  
Old 05-15-2006, 06:35 PM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: iWitness v2

[ QUOTE ]
Has this problem been figured out yet

[/ QUOTE ]

Unfortuately not. I still have no idea what causes this...
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 10:32 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.