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
  #1  
Old 08-03-2006, 05:20 PM
rjoefish rjoefish is offline
Senior Member
 
Join Date: Feb 2006
Location: Saying AAAHHHHHHH
Posts: 1,397
Default Party Poker opens tables in weird spot...

I'm having an annoying problem with Party Poker's client. When I open a table it will open just fine if I do not currently have a table open and in the upper left hand corner of my monitor. I use 2 monitors and the client and tables stay on the main one, which is on the left.

Now, here is the problem, when I open a table and already have a table open in the upper left hand corner, which I assume is the default position, all other tables open in the middle of the screen more than 3/4th out to the bottom of the screen. Looks like this:




This is getting incredibly annoying as I sometimes it prevents me from opening multiple good tables and sitting in them if they are near full ( I play 6max) and I am often missing out on some pretty primo seats.

Does anyone know what is causing this and what I can do to fix it? Any information or suggestions would be greatly appreciated.
Reply With Quote
  #2  
Old 08-03-2006, 05:26 PM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: Party Poker opens tables in weird spot...

PartyPlanner.
Reply With Quote
  #3  
Old 08-03-2006, 06:10 PM
Praetor Praetor is offline
Senior Member
 
Join Date: May 2006
Posts: 6,248
Default Re: Party Poker opens tables in weird spot...

[ QUOTE ]
PartyPlanner.

[/ QUOTE ]

This program is golddust
Reply With Quote
  #4  
Old 08-03-2006, 06:38 PM
tigerite tigerite is offline
Senior Member
 
Join Date: Sep 2004
Posts: 9,815
Default Re: Party Poker opens tables in weird spot...

It absolutely is, although just occasionally it crashes.
Reply With Quote
  #5  
Old 08-03-2006, 11:18 PM
Sandra Bullett Sandra Bullett is offline
Senior Member
 
Join Date: Mar 2006
Posts: 135
Default Re: Party Poker opens tables in weird spot...

There was another post about 3 months ago from a guy with the same trouble. Basically PP's software 'intelligently' places your 2nd and subsequent tables if the best location is being used. If you have 2+ monitors PP's idea of where to put the later tables can be pretty screwy, especially if you have unusual monitor sizes.

I wrote a little AHK script for him (for the thread), as follows. It may be of use to you (you'll need to tweak the MaxScreenCol and MaxScreenRow to suit your setup).

<font class="small">Code:</font><hr /><pre>
;
; Moves any Party tables that are off-screen, back onto screen
;
; Runs continually
;
; ---------------------------------------------------------
; USER CONFIGURABLE VARIABLES
; ---------------------------------------------------------

CycleTime = 5000 ; How many milliseconds between checks of table positions

TitleBarContains := "Good Luck" ; Or you could use your nickname.

MaxScreenCol = 1600 ; Or whatever the values are for your screen
MaxScreenRow = 1200

MoveToX = 0 ; all off-screen tables get moved to here
MoveToY = 0

; ---------------------------------------------------------
; START OF MAIN CODE
; ---------------------------------------------------------

SetTitleMatchMode = 2 ; Contains
TitleBarContains := "Good Luck" ; Or you could use your nickname.

Loop
{
id =
WinGet, id, list,,, Program Manager
Loop, %id%
{
StringTrimRight, this_id, id%a_index%, 0
WinGetTitle, this_title, ahk_id %this_id%
IfNotInString, this_title, %TitleBarContains%
continue

; Have found a party poker table, so check its position
WinGetPos, IsAtX, IsAtY, ,, %this_title%
If (IsAtX &gt; MaxScreenCol or IsAtY &gt; MaxScreenRow)
WinMove, %this_title%,, %MoveToX%, %MoveToY%
}
Sleep, %CycleTime%
}
</pre><hr />


Or you could just use PartyPlanner.
Reply With Quote
  #6  
Old 08-04-2006, 01:19 AM
rjoefish rjoefish is offline
Senior Member
 
Join Date: Feb 2006
Location: Saying AAAHHHHHHH
Posts: 1,397
Default Re: Party Poker opens tables in weird spot...

Party planner looks pretty badass, thanks for all the help.
Reply With Quote
  #7  
Old 08-04-2006, 04:21 AM
Jimmy James Jimmy James is offline
Senior Member
 
Join Date: May 2005
Location: Peoria, AZ
Posts: 442
Default Re: Party Poker opens tables in weird spot...

i love party planner...so glad it's free!
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:03 AM.


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