Open Side Menu Go to the Top
Register
search script for Pokerstars search script for Pokerstars

01-01-2010 , 07:00 PM
Hello !
I use Tableninja and search now for a script that send me a table,that i open but not sit on it to a spezial place on my monitor
I have the problem, that if i multitabling, and want to open a new table to sit in, this table open under my active tables or anywhere

ty
search script for Pokerstars Quote
01-01-2010 , 07:24 PM
Run script before you open any tables, you can change x,y to whatever you want.

Code:
x:=100
y:=100

loop
{
 winget,list,list,ahk_class PokerStarsTableFrameClass
 loop %list%
 {
  id:=list%A_index%
  if seated%id% is not number
  {
  WinMove, ahk_id%id%,, x,y
  seated%id%:=1
  }
 }
sleep,500
}
search script for Pokerstars Quote
01-01-2010 , 09:40 PM
Awesome. I will be using this one. Thanks
search script for Pokerstars Quote
01-02-2010 , 02:03 AM
f1 will move table back to position it was moved from, hotkey can be changed manually
Code:
x:=100
y:=100

loop
{
 winget,list,list,ahk_class PokerStarsTableFrameClass
 loop %list%
 {
  id:=list%A_index%
  if seated%id% is not number
  {
  wingetpos,xstart%id%,ystart%id%,,,ahk_id%id%
  WinMove, ahk_id%id%,, x,y
  seated%id%:=1
  }
 }
sleep,500
}

f1::
ifwinactive,ahk_class PokerStarsTableFrameClass
{
winget,id,id,A
WinMove, ahk_id%id%,, xstart%id%,ystart%id%
}
return
search script for Pokerstars Quote
01-02-2010 , 07:24 AM
Hello !
Thanks you very much !
It works nice


Greeting
search script for Pokerstars Quote

      
m