Open Side Menu Go to the Top

03-26-2009 , 05:54 PM
I use poker stars custom layout function. I constantly switch between the 20 table layout and the 24 table layout. see picture below.

Can someone help me with AHK script that can make a hot key to switch between these 2 custom layouts? Say if I press F11, it will use the "custom layout:20" if I press F12 it will use the "custom layout 24 table".

[img] http://lucomputers.com/test/script.jpg [/img]

I can ship $15 on stars for your help.
Need help with a script Quote
Need help with a script
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
Need help with a script
03-26-2009 , 06:10 PM
Here you go

Code:
#NoEnv
#SingleInstance force

LAYOUT_1:="20"
LAYOUT_2:="24"

f1::
x:=!x
if x
  chooseLayout(LAYOUT_1)
else
  chooseLayout(LAYOUT_2)
return

chooseLayout(layoutName) {
WinWait, PokerStars Lobby
WinActivate
WinMenuSelectItem,,, View, Custom Layout: %layoutName%
}
Need help with a script Quote
03-26-2009 , 06:18 PM
Got it working. thanks.

Please PM me your stars name.
Need help with a script Quote
03-26-2009 , 06:28 PM
I also need a script

Where it can grab my attention (such as draw a red boarder/frame around the table like table ninja) whenever my HUD (HM) displays less then x% table average VPIP.

If this takes a long time, I can pay more.
Need help with a script Quote
03-26-2009 , 06:31 PM
Sorry, I can't help you with that as I don't have HM.
Need help with a script Quote
Need help with a script
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
Need help with a script

      
m