Open Side Menu Go to the Top

12-28-2013 , 03:23 PM
Hi,

I'm looking for software (Stars) that auto arranges my tournament tables. I want to have different slots for different type of SNG's/MTT.
So for example a different slot for Steps, Fifty50, 18-players SNG, MTT,...

Regards,
Kenny
Looking for software Quote
Looking for software
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
Looking for software
12-28-2013 , 04:14 PM
Try this, set your title patterns and coordinates in the "slots=" line:
Code:
#Persistent
Settitlematchmode,2
setwindelay,-1
settimer,arrange,25

slots=Steps*0x0-Fifty50*640x0-18max*0x640-guaranteed*640x640

return

arrange:
winget,list,list,Table ahk_class PokerStarsTableFrameClass,,Logged In
loop %list%
{
id:=list%A_index%
wingettitle,title,ahk_id%id%
Loop,Parse,slots,-,
{
stringsplit,data,A_loopfield,*
if instr(title,data1)>0
{
wingetpos,x,y,,,ahk_id%id%
stringsplit,coord,data2,x
if !((x=coord1) && (y=coord2))
WinMove,ahk_id%id%,,coord1,coord2
break
}
}
}
return
Looking for software Quote
12-28-2013 , 06:44 PM
Thank you,

Seems to work but if I give the slot a negative number it doesn't work.
I need to do that because I have my tables on my 2nd monitor who is on the left side of my Main monitor.
Looking for software Quote
12-28-2013 , 06:48 PM
nevermind, figured this problem out
Looking for software Quote
01-05-2014 , 12:25 PM
Could you include something that moves my tournament lobbys to a fixed spot.
Thanks in advance!
Looking for software Quote
Looking for software
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
Looking for software

      
m