Open Side Menu Go to the Top

01-26-2009 , 10:04 AM
does anyone have any idea's why this script works great without pt running but as soon as pt is running the script stops working. running windows vista
StarsStackerAlpha (Table Stacking AHK Script) Quote
StarsStackerAlpha (Table Stacking AHK Script)
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
StarsStackerAlpha (Table Stacking AHK Script)
01-27-2009 , 11:25 AM
Amerzel was kind enough to implement a small modification at my request, which I am sharing here with the group. Basically, the original code was specifically for tournament tables, whereas this now works with ANY PokerStars table.

My thanks to Amerzel once again.

Code:
#NoEnv

NumberOut := 0

GroupAdd, PSTables, ahk_class PokerStarsTableFrameClass

XButton1::MoveOut()
XButton2::MoveIn()

MoveOut()
{
	global NumberOut
		
	if NumberOut = 0
	{
		MoveWindow(800, 0, 800, 580, 1)
		
		NumberOut += 1
	}
	else	if NumberOut = 1
	{
		MoveWindow(0, 580, 800, 580, 1)
		NumberOut += 1
	}
	else	if NumberOut = 2
	{
		MoveWindow(800, 580, 800, 580, 1)
		NumberOut = 0
	}
}

MoveIn()
{	
	MoveWindow(0,0, 800, 580, 0)
	NumberOut = 0
}

MoveWindow(LocX, LocY, SizeX, SizeY, Out)
{
	WinGetActiveTitle, TitleVar
	IfInString, TitleVar, Tournament
        IfWinActive ahk_class PokerStarsTableFrameClass
	{
		WinMove, %TitleVar%,, LocX, LocY, SizeX, SizeY
		Send, {F5}
	}
}
StarsStackerAlpha (Table Stacking AHK Script) Quote
01-28-2009 , 01:43 PM
Quote:
Originally Posted by Albert Silver
Amerzel was kind enough to implement a small modification at my request, which I am sharing here with the group. Basically, the original code was specifically for tournament tables, whereas this now works with ANY PokerStars table.

My thanks to Amerzel once again.
No problem. Glad you got it working.
StarsStackerAlpha (Table Stacking AHK Script) Quote
02-10-2009 , 11:04 AM
Great program BUT

the one problem I am having with it, when i do snap a window to antoher location and have 20+ tables open cycling throuhg ALL the tables seems to bogg my computer down causing another table to require action and it to be lost in teh suffle (takes a few seconds to cycle)

Is this cuz my computer is to slow, or just the nature of the ? 1800xp CPU, 1 gig of pc133 ram...??
StarsStackerAlpha (Table Stacking AHK Script) Quote
02-20-2009 , 09:00 PM
maybe im ******ed but where can i download this?
StarsStackerAlpha (Table Stacking AHK Script) Quote
02-21-2009 , 12:01 AM
You have to download autohotkey (google search) and install that. Then just copy and paste whats in the code box into notepad, save as a .ahk file, and double click on that file.
StarsStackerAlpha (Table Stacking AHK Script) Quote
02-24-2009 , 05:35 AM
It works.Thank you.
StarsStackerAlpha (Table Stacking AHK Script) Quote
02-25-2009 , 01:22 AM
Another AHK noob here. When I double click the AHK scripts they don't open as a script it just comes up text. Then when I go to open with and try to open with AHK it doesn't do anything. It goes back to the open with prompt and ask me to pick a program.
StarsStackerAlpha (Table Stacking AHK Script) Quote
02-25-2009 , 11:49 AM
You need to download and install AutoHotKey from http://www.autohotkey.com/ to run .ahk files
StarsStackerAlpha (Table Stacking AHK Script) Quote
02-25-2009 , 01:07 PM
Quote:
Originally Posted by Amerzel
You need to download and install AutoHotKey from http://www.autohotkey.com/ to run .ahk files
thankyou. Go figure, installing programs for them to be installed.
StarsStackerAlpha (Table Stacking AHK Script) Quote
06-27-2009 , 01:21 PM
Quote:
Originally Posted by sethseth
When I pull a table out of the stack I want to be able to time down on it while continuing to click fold in the main stack. How do I do this?
Quote:
Originally Posted by JayA
Say he pulls a table out of the stack, and then takes action on a table that pops up in the stack. Instead of the focus going back to the table outside of the stack, he would like the focus to keep going through the stack until he's made his decision on the table he has outside of the stack. I hope that clears it up. I'm not sure if that's possible though. Maybe with some sort of If/And/Then loop? I don't know the exact syntax of AHK, but after looking through it, some of the stuff looks a bit similar to VB.
Is there any solution to this yet? seems like it would be a common request
StarsStackerAlpha (Table Stacking AHK Script) Quote
07-01-2009 , 07:51 AM
i get call to nonexistent function when i try to run the script, help?
StarsStackerAlpha (Table Stacking AHK Script) Quote
07-01-2009 , 08:28 AM
.

Last edited by wakeup; 07-01-2009 at 08:28 AM. Reason: same post
StarsStackerAlpha (Table Stacking AHK Script) Quote
07-18-2009 , 03:20 AM
awesome script, just a quick question -

i added the F5 thing in the user.ini file, what did you mean by i need to keep pressing F5 after i move a table?
StarsStackerAlpha (Table Stacking AHK Script) Quote
08-01-2009 , 05:53 PM
Quote:
Originally Posted by timed@44
does anyone have any idea's why this script works great without pt running but as soon as pt is running the script stops working. running windows vista
Im having the same problem. Anyone knows how to fix this?
StarsStackerAlpha (Table Stacking AHK Script) Quote
11-26-2009 , 11:11 AM
What can i change in the code to send the command to the table under my mouse?
StarsStackerAlpha (Table Stacking AHK Script) Quote
11-27-2009 , 07:29 AM
Quote:
Originally Posted by aznfriskoboi
Im having the same problem. Anyone knows how to fix this?
change Pokerstars, PT and AHK to run all as Admnistrator ( right click, properties/Compatibility) and move your scripts to your users folders.
StarsStackerAlpha (Table Stacking AHK Script) Quote
12-14-2009 , 06:04 AM
Quote:
Originally Posted by Euphoricism
Yes. Click first.

edit: that sounded smartassed. I meant add in a controlclick that uses the location of your mouse pointer. So when you hit the hotkey itll send a click for you which will *make* the table the active table, and all should be well.
Anybody able to help with this? I've been trying to find out how to do it but my programming skills are lacking. I managed to figure out how to do a controlclick on a specific position, but not on the spot under the cursor.
StarsStackerAlpha (Table Stacking AHK Script) Quote
12-15-2009 , 12:21 AM
Quote:
Originally Posted by Hardicus
Anybody able to help with this? I've been trying to find out how to do it but my programming skills are lacking. I managed to figure out how to do a controlclick on a specific position, but not on the spot under the cursor.
Ok I figured it out myself (finally). For anyone else interested, you can do it like this.

Code:
XButton1::
Click
MoveWindow(0,0,726,527)
return
StarsStackerAlpha (Table Stacking AHK Script) Quote
10-28-2011 , 01:25 PM
Hi,

I really know nothing about computer coding/programming...

I've edited the code though for the table sizes/positions i want and changed everything that was said. I try saving the notepad file into the autohotkey folder under .ahk and then a message pops up saying "you don't have permission to save in this location. contact the administrator to obtain permission..." What do I have to do now? Do I have to change the settings or anything or if i save the file into a different folder will it work?

And finally, if i do manage to save the file into autohotkey, how do i open it and use it when i'm ready to play?

Thanks for your help!!
StarsStackerAlpha (Table Stacking AHK Script) Quote
10-28-2011 , 02:29 PM
Save it to your desktop or my documents, you'll have permission there.

Once saved, to open it you should just have to double click to run but this probably won't work to begin with because of again permissions. go in the autohotkey folder, right-click autohotkey.exe, choose properties and set the checkbox "always run as administrator". should be good to go then
StarsStackerAlpha (Table Stacking AHK Script) Quote
10-30-2011 , 08:30 AM
Not really sure what the point in this is? why call a function when just using winmove is a single line of code anyway? or am i missing something?
StarsStackerAlpha (Table Stacking AHK Script) Quote
StarsStackerAlpha (Table Stacking AHK Script)
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
StarsStackerAlpha (Table Stacking AHK Script)

      
m