Open Side Menu Go to the Top

10-27-2012 , 05:18 AM
I would like someone to create this script. If it is possible

We play stacked. We have our stack upper left. While playing we have an important table we need to follow action that why we want a shortcut to place right to the main stack with smaller size. The table will remain there until we force it with the same shortcut to be moved back in the main stack

Briefly what script will do:

We want to move the tables from stacked into the grid with smaller size pressing tab. The table will move back if we have our mouse on the table and press tab. Otherwise it will remain there forever. I need the grid to have 11 slots
stack ahk script creation,is this possible? Quote
stack ahk script creation,is this possible?
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
stack ahk script creation,is this possible?
10-28-2012 , 11:20 AM
i like to manually move the table and not automatically
stack ahk script creation,is this possible? Quote
10-28-2012 , 02:46 PM
It is possible, it is also very easy, even for a fairly new AHK scripter, it is just fairly time consuming so its unlikely you will find someone to do it for you. Just read a few of the AHK tutorials and muck around with an existing table manager script to get a feel for how to do it, then make your own.
stack ahk script creation,is this possible? Quote
10-28-2012 , 05:31 PM
heres one i used to use, dunno if it still works tbh but it will get you started.

;
; 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
stack ahk script creation,is this possible? Quote
10-28-2012 , 05:34 PM
thank you for your time

can you explain what it does and which keys should i use? I have no idea about scripting
stack ahk script creation,is this possible? Quote
10-28-2012 , 05:47 PM
ok so its just a basic ahk script. you need to d/l ahk from here http://www.autohotkey.com/

at the minute its set to use F1,F2,F3,F4... You can easily change these by just altering the corresponding part of the script.

To get co-ordinates of your own monitor and where you want the tables positioned then you will have to use window spy ( which comes as part of the AHK d/)

You can add more slots just by copy and pasting say this

F4::
WinGetActiveTitle, Title1
WinMove, %Title1%,,799, 573
return

and just adding new key and location you want it to go too
stack ahk script creation,is this possible? Quote
10-28-2012 , 05:49 PM
thank you
stack ahk script creation,is this possible? Quote
10-29-2012 , 12:50 AM
Quote:
Originally Posted by grindtolive
Quote:
Originally Posted by OditeRussia

i like to manually move the table and not automatically
i am the author of StackAndTile

i'd just like to point out that with SaT you can indeed only move tables out of the stack manually if you so choose.

I would be happy to answer any of your questions in our official 2+2 support thread here: http://forumserver.twoplustwo.com/16...le-657805-new/

Last edited by _dave_; 10-31-2012 at 06:25 AM.
stack ahk script creation,is this possible? Quote
stack ahk script creation,is this possible?
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
stack ahk script creation,is this possible?

      
m