Open Side Menu Go to the Top
Register
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables)

12-11-2006 , 03:02 AM
I have altered this script to a version that works with Full Tilt. Anyone interested?
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
12-11-2006 , 03:36 AM
Dave: tried to send you a PM but your box is full

Was just curious if you ever had a chance to look into the problem I was having (I can resend PM if you can't find it)
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
12-15-2006 , 06:11 PM
hey Dave, just found this today and it's great! I'm also having some issues similar to those others had with moving tables around, but I may be starting to get the hang of it after finding out top left cooordinate is the "sweet spot"

If you can get that kink worked out a bit better and add movement based on tournament blind level I'd gladly pay for this software!
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
12-16-2006 , 01:10 PM
Hi Dave,

Love this script too. Had a small change to the script you might want to add. It's just related to the positioning of the Gui.

Right after you read in the x and y positions from the ini you may want to add the following lines.

<font class="small">Code:</font><hr /><pre>
IniRead, gx, %inifile%, Defaults, gx
IniRead, gy, %inifile%, Defaults, gy

If (gx &lt;= 0) Or (gx &gt;= A_ScreenWidth )
LastGuiX = Center
If (gy &lt;= 0) Or (gy &gt;= A_ScreenWidth )
LastGuiY = Center
</pre><hr />

What this does is ensures that the Gui will be visible. I had problems previously with your script if I switched from using dual monitors to a single monitor, or if I changed the screen resolution. The script would load but the Gui would be "off-screen".

BTW, if you'd rather I PM you with this stuff or do something like this over at overcards.com, let me know.

I think you're doing some really interesting stuff right now, keep up the good work.
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
12-16-2006 , 10:15 PM
When I open it my capture, configure, and delete buttons are all grayed out. I have the newest version of AHK.
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
12-17-2006 , 08:19 PM
Quote:
When I open it my capture, configure, and delete buttons are all grayed out. I have the newest version of AHK.
Any ideas why? I would like to use this but I can't. I know it's something stupid.
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
12-17-2006 , 08:32 PM
Hi Schuckmer,

<font class="small">Code:</font><hr /><pre>
IniRead, gx, %inifile%, Defaults, gx
IniRead, gy, %inifile%, Defaults, gy

If (gx &lt;= 0) Or (gx &gt;= A_ScreenWidth )
LastGuiX = Center
If (gy &lt;= 0) Or (gy &gt;= A_ScreenWidth )
LastGuiY = Center
</pre><hr />

Quote:

What this does is ensures that the Gui will be visible. I had problems previously with your script if I switched from using dual monitors to a single monitor, or if I changed the screen resolution. The script would load but the Gui would be "off-screen".

Great suggestion, I will add this in

Quote:

BTW, if you'd rather I PM you with this stuff or do something like this over at overcards.com, let me know.

Posting as you did here in the appropriate thread is probably best - this way anyone confident in their editing can add it in themselves if they like before I get around to adding / testing and updating a new version.

Many thanks,

dave.
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
12-17-2006 , 08:39 PM
Quote:
Quote:
When I open it my capture, configure, and delete buttons are all grayed out. I have the newest version of AHK.
Any ideas why? I would like to use this but I can't. I know it's something stupid.
Is "Enable Re-Size and Arrange Tables" ticked?

All controls are greyed out if the planner-subroutine is running, since altering saved layouts while planner-subroutine is running can cause instability.

dave.
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
12-17-2006 , 10:53 PM
Quote:
Quote:
Quote:
When I open it my capture, configure, and delete buttons are all grayed out. I have the newest version of AHK.
Any ideas why? I would like to use this but I can't. I know it's something stupid.
Is "Enable Re-Size and Arrange Tables" ticked?

All controls are greyed out if the planner-subroutine is running, since altering saved layouts while planner-subroutine is running can cause instability.

dave.
Yes I had that box checked. The buttons are grayed out if it is checked?
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
12-18-2006 , 01:23 AM
Quote:
Hi Schuckmer,

<font class="small">Code:</font><hr /><pre>
IniRead, gx, %inifile%, Defaults, gx
IniRead, gy, %inifile%, Defaults, gy

If (gx &lt;= 0) Or (gx &gt;= A_ScreenWidth )
LastGuiX = Center
If (gy &lt;= 0) Or (gy &gt;= A_ScreenWidth )
LastGuiY = Center
</pre><hr />

Quote:

What this does is ensures that the Gui will be visible. I had problems previously with your script if I switched from using dual monitors to a single monitor, or if I changed the screen resolution. The script would load but the Gui would be "off-screen".

Great suggestion, I will add this in

Quote:

BTW, if you'd rather I PM you with this stuff or do something like this over at overcards.com, let me know.

Posting as you did here in the appropriate thread is probably best - this way anyone confident in their editing can add it in themselves if they like before I get around to adding / testing and updating a new version.

Many thanks,

dave.
I knew when I first posted this that I had typed it in wrong and thought I had updated it in the posting. But after your reply, I realize I never did the update. The code should actually be:

<font class="small">Code:</font><hr /><pre>
IniRead, gx, %inifile%, Defaults, gx
IniRead, gy, %inifile%, Defaults, gy

If (gx &lt;= 0) Or (gx &gt;= A_ScreenWidth )
gx = Center
If (gy &lt;= 0) Or (gy &gt;= A_ScreenWidth )
gy = Center
</pre><hr />
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
12-27-2006 , 09:18 PM
I was having the same issue with the GUI going off screen. For some reason my co-ords were -32000/-32000, I have no idea why though.

Now I have a small issue with how I start it. If I just Double Click the script, it works fine and the GUI pops up in the 0, 0 hole (new co-ords I set for it in the default) but if I start the script using another .ahk.... it is off screen again.

bit of a brain twister, cannot see why it would be any diff. anyways, just thought I would mention it.

Thanks as always dave, your a monsta!
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
12-28-2006 , 02:07 AM
Quote:
I was having the same issue with the GUI going off screen. For some reason my co-ords were -32000/-32000, I have no idea why though.

Now I have a small issue with how I start it. If I just Double Click the script, it works fine and the GUI pops up in the 0, 0 hole (new co-ords I set for it in the default) but if I start the script using another .ahk.... it is off screen again.

bit of a brain twister, cannot see why it would be any diff. anyways, just thought I would mention it.

Thanks as always dave, your a monsta!
I've had similar problems with other scripts. What is most likely happening is that the working directory is different when you launch it from another script. So you actually have two ini files, one in the folder that contains the script itself (when u run the script directly). And most likely another one in the script that you have launching Stars Planner.

The way to fix this is to explicitly state what the working directory is. In the Run command, do something like:

<font class="small">Code:</font><hr /><pre> Run, F:\My Documents\AHK\Poker\StarsPlanner\StarsPlanner-v0.03b.ahk, F:\My Documents\AHK\Poker\StarsPlanner\ </pre><hr />

The path after the second comma is the working directory. Then your ini file will stay in the correct directory.
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
12-28-2006 , 02:10 AM
Quote:

<font class="small">Code:</font><hr /><pre>
IniRead, gx, %inifile%, Defaults, gx
IniRead, gy, %inifile%, Defaults, gy

If (gx &lt;= 0) Or (gx &gt;= A_ScreenWidth )
gx = Center
If (gy &lt;= 0) Or (gy &gt;= A_ScreenWidth )
gy = Center
</pre><hr />
I must have been seriously tired or drunk or both when I posted that code, because now I see I made a second error when posting. I'm sure others have figured it out by now, but it should actually read:

<font class="small">Code:</font><hr /><pre>IniRead, gx, %inifile%, Defaults, gx
IniRead, gy, %inifile%, Defaults, gy

If (gx &lt;= 0) Or (gx &gt;= A_ScreenWidth )
gx = Center
If (gy &lt;= 0) Or (gy &gt;= A_ScreenHeight )
gy = Center </pre><hr />
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
01-18-2007 , 01:42 AM
I am trying to use the Full Tilt table re-sizer, but I have no action buttons when it is my turn to act. I have the "enable" button unchecked. Do you know what the problem is?

Thanks.
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
01-20-2007 , 05:52 PM
bump the new update caused [censored] to not work anymore.
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
01-21-2007 , 10:47 AM
Anyway to get a fix for new stars update? The Chipreloader doesn't work, also the Auto Seat doesn't buy you into the game anymore because of the new Buyin Window.
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
01-22-2007 , 07:56 AM
APerfect10 or someone else seems to have fixed the ChipReloader script so fixing the StarsPlanner rebuying function shouldn't be very hard. Would appreciate it if someone could do this.
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
01-22-2007 , 12:23 PM
Quote:

Would appreciate it if someone could do this.

I purposefully put off updating so I could get some hands in this weekend... I hate when sites "upgrade" at prime-time.

I did the update last night, ugh the new buy-in box is horrible.

Will fix just as soon as I get back from work tonight.

dave.
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
01-22-2007 , 02:07 PM
Thanks alot dave, looking forward to it!
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
01-24-2007 , 09:56 AM
Any updates on this yet?
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
01-25-2007 , 01:46 AM
bump
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
01-25-2007 , 12:02 PM
I have a strange problem with it, when I start it, it is minimized in the taskbar and it stays minimized. I cannot open it. very strange.
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
01-25-2007 , 12:37 PM
Quote:
I have a strange problem with it, when I start it, it is minimized in the taskbar and it stays minimized. I cannot open it. very strange.
Yes, i had this exact same problem recently. I found burning it on to disc and opening it from there cured it (after re-downloading).
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
01-25-2007 , 05:04 PM
Quote:
I have a strange problem with it, when I start it, it is minimized in the taskbar and it stays minimized. I cannot open it. very strange.
Deleting the .ini file and then restarting worked fine for me.
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote
01-25-2007 , 06:53 PM
will try that, thanks for the help.
NEW AHK Script: StarsPlanner (Auto Resize / Arrange Tables) Quote

      
m