Open Side Menu Go to the Top

01-23-2013 , 04:51 PM
That moves a table over to my other screen at the click of a button so that I can watch the hand develop, instead of it being hidden behind other tables when they pop up.

And then I would like it to return to my stack again by either a click of a button just doing so automatically once then hand has finished.

I am pretty sure that table ninja does this but my roll is $70 and Im brook irl. Also pretty sure this script exists because Ive seen people use it (chicagojoey one of them).

Thank you.
Looking for a free script... Quote
Looking for a free script...
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
Looking for a free script...
01-23-2013 , 07:11 PM
researching the same atm.
stackandtile does it automaticly but only with one size and it needs subscribtion..

With placemint you can do that in assigning keys but it is not that straightforward to setup.
Looking for a free script... Quote
01-23-2013 , 09:39 PM
How about something like this?

Code:
#NoEnv
SendMode Input
#SingleInstance, force

Stack0x = 0
Stack0y = 0

Stack1x = 100
Stack1y = 100

$F1::
IfWinActive, ahk_class PokerStarsTableFrameClass
	{
	id := WinExist("A")
	WinGetPos, x, y,,, ahk_id%id%
	if (x != Stack0x) and (y != Stack0y)
		WinMove, ahk_id%id%,, %Stack0x%, %Stack0y%
	else
		WinMove, ahk_id%id%,, %Stack1x%, %Stack1y%
	}
return
Looking for a free script... Quote
01-23-2013 , 09:45 PM
http://www.flopturnriver.com/pokerfo...00-171157.html

This is what your looking for. Allows you to create 4 seperate slots to move tables to with a hotkey. Moving the table to an empty slot before stacking more in the already used slots. Moves back to main stack as well.

Pretty easy to alter the AHK script (literally like change 1 line) to get it to work with others sites (at least Merge/WPN).

Also a great tutorial on how to set it up.
Looking for a free script... Quote
01-27-2013 , 08:01 AM
Quote:
;
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
; Author: A.N.Other <[email protected]>
;
; Script Function:
; Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
;

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.


SetTitleMatchMode, 2

F1::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 0, 0
return

F2::
WinGetActiveTitle, Title1
WinMove, %Title1%,,799, 0
return

F3::
WinGetActiveTitle, Title1
WinMove, %Title1%,,0,573
return

F4::
WinGetActiveTitle, Title1
WinMove, %Title1%,,799, 573
return
It works for all sites as it's not site specific and just grabs any window.

I just use this and F1,F2,F3,F4 to move tables
User window spy to get correcto co-ordinates

Last edited by fix9; 01-27-2013 at 08:03 AM. Reason: Can't remember where I got it from though as it's a few yrs old.
Looking for a free script... Quote
Looking for a free script...
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
Looking for a free script...

      
m