Open Side Menu Go to the Top
Register
AHK Script: Stacked Table Previewer AHK Script: Stacked Table Previewer

11-29-2010 , 09:17 PM
hi, freo.

Yes, the latter.

I like how the table size decreases in the preview window, as the number of tables increase. I would like it to do the same, in reverse, as the number of tables decreases.

Not a big deal. Was just curious if there was a way to refresh the view somehow, like with F5, but I guess there isn't. That's cool.
AHK Script: Stacked Table Previewer Quote
12-15-2010 , 08:53 AM
Any updates?
AHK Script: Stacked Table Previewer Quote
12-15-2010 , 09:42 AM
Unfortunately i've been sidetracked by another project. I did look at these changes alot but just couldnt work out how to read the live hand info from Pokerstars.
AHK Script: Stacked Table Previewer Quote
12-15-2010 , 09:53 AM
Quote:
Originally Posted by freo
Unfortunately i've been sidetracked by another project. I did look at these changes alot but just couldnt work out how to read the live hand info from Pokerstars.
Thanks for letting me know.. Good luck with your side project.

Just in case it inspires you again, I was thinking instead of reading for hand histories you can always detect player hole cards by checking for a certain color at certain coordinates? Would be nice to get this started again, as it has become one of my essential grinding tools now.
AHK Script: Stacked Table Previewer Quote
12-15-2010 , 10:48 PM
Haven't tried this out yet but certainly intend to try it. I'd like to hear opinions of people who have used both TOI and this program to manage stacked tables, how do they compare?
AHK Script: Stacked Table Previewer Quote
12-15-2010 , 10:57 PM
Quote:
Originally Posted by digit
Haven't tried this out yet but certainly intend to try it. I'd like to hear opinions of people who have used both TOI and this program to manage stacked tables, how do they compare?
They aren't really to be used in place of each other. TOI sorts out table layouts and stacking and tiling tables etc. This script just shows a preview of all the tables you have open.

I primarily use it to see which tables have broken, or maybe see the results of a hand that is in the stack somewhere. If anything its just good to have it there as a summary of your session
AHK Script: Stacked Table Previewer Quote
12-16-2010 , 12:10 AM
The pixel match match work for hole card recognition provided you use the same layout/card format all the time and never resize the table, however the other things you would need to get would be:
1. the number of active players
2. the size of the pot
3. whether you are all in or have called a villains all-in.

These combined makes it a pretty difficult task especially trying to cater for all the different layouts.
AHK Script: Stacked Table Previewer Quote
12-16-2010 , 07:41 AM
icic.. well it works pretty well as it is now so thanks for that anyway
AHK Script: Stacked Table Previewer Quote
12-25-2010 , 12:52 PM
is there any way to change the background of the previewer to black ?

or even better transparent ?

Last edited by Slo Motion; 12-25-2010 at 01:15 PM.
AHK Script: Stacked Table Previewer Quote
12-26-2010 , 03:41 AM
To set the background color to black change this line:

;Create preview window
Gui, 99: +LastFound +LabelForm1_
target := WinExist()

To this:
;Create preview window
Gui, 99: +LastFound +LabelForm1_
Gui, 99: Color, 000000
target := WinExist()


To make transparent, change the same code to this:
;Create preview window
Gui, 99: +LastFound +LabelForm1_
Gui, 99: Color, 000000
WinSet, TransColor, 000000
target := WinExist()
AHK Script: Stacked Table Previewer Quote
12-26-2010 , 02:40 PM
Quote:
Originally Posted by freo
To set the background color to black change this line:

;Create preview window
Gui, 99: +LastFound +LabelForm1_
target := WinExist()

To this:
;Create preview window
Gui, 99: +LastFound +LabelForm1_
Gui, 99: Color, 000000
target := WinExist()


To make transparent, change the same code to this:
;Create preview window
Gui, 99: +LastFound +LabelForm1_
Gui, 99: Color, 000000
WinSet, TransColor, 000000
target := WinExist()
ty sir, something wrong with the transparent one though.
AHK Script: Stacked Table Previewer Quote
12-27-2010 , 12:43 AM
Quote:
Originally Posted by Slo Motion
ty sir, something wrong with the transparent one though.
Transparent works fine for me, heres the full code
Code:
; freo's Stacked Table Previewer v1.16
; Only works in Vista/Windows7 with aero enabled
; 'clay973' on PS for donations

;Features:
;Shows thumbnails of all stacked tables in a preview window
;Adds and removes tables as they are opened and closed
;Click on the thumbnail to activate the table in the stack
;Click the "Leave Table" icon on Pokerstars thumbnails or the Options/Lobby/Stats icons on FTP thumbnails to leave the table
    ;this will also click the "are you sure you want to leave?" message box
;Displays number of open tables in the preview window title (in the caption)
;Highlights the active table green in the thumbnail (Color and border width can be changed in the user defined settings)
;Highlights the previous active table pink (Color and border width can be changed in the user defined settings)

#SingleInstance Force
#NoEnv

DetectHiddenWindows,On
SetTitleMatchMode, 2

OnMessage(0x201,"clickevent")
OnMessage(0x46, "WM_WINDOWPOSCHANGING")

;------------------------------------------------------------------------------------------------------------------
;User defined settings
pokersite=ps                   ;Pokersite ID - ps for Pokerstars : ft for Full Tilt : cu for customised (you'll need to change cu settings further down)
hostwindoww=800                ;Host preview window width             
hostwindowh=900                 ;Host preview window height
hostwindowx=800                 ;Host preview window x position on screen
hostwindowy=0                  ;Host preview window y position on screen
refreshrate=3000                ;Number of seconds to wait between refreshes (1000 = 1 second)
activebordersize=4              ;Width of the colored border for showing active and last active tables
activebordercolor=00FF00        ;Color of the highlight border for the active window
lactivebordercolor=FF00FF       ;Color of the highlight boredr for the last active window

;------------------------------------------------------------------------------------------------------------------

if pokersite = ps
{
    ptablebasew=483                                     ;Poker table base resolution width(For stars this is the smallest table resolution (483 x 353)
    ptablebaseh=353                                     ;Poker table base resolution height(For stars this is the smallest table resolution (483 x 353)
    
    ;Close settings - On Pokerstars this is the area of the Leave Table icon in the top right of the thumbnail
    closexl=418                                         ;Left x position of leave table button in relation to the resolution set against ptablebasew & ptablebaseh 
    closexr=481                                         ;Right x position of leave table button in relation to the resolution set against ptablebasew & ptablebaseh 
    closeyt=24                                          ;Top y position of leave table button in relation to the resolution set against ptablebasew & ptablebaseh 
    closeyb=42                                          ;Bottom y position of leave table button in relation to the resolution set against ptablebasew & ptablebaseh
    
    windowtitle=ahk_class PokerStarsTableFrameClass     ;Window title to match to find tables - Pokerstars (use window class (ahk_class prefixed))
    windowtitleexclude=                                 ;Window title to exclude 
}
else if pokersite = ft
{
    ptablebasew=480                                     ;Poker table base resolution width
    ptablebaseh=351                                     ;Poker table base resolution height
    
    ;Close settings - On Full Tilt this is the area of the blue Options/Lobby/Stats icons in the top right of the thumbnail
    closexl=427                                         ;Left x position of leave table button in relation to the resolution set against ptablebasew & ptablebaseh 
    closexr=478                                         ;Right x position of leave table button in relation to the resolution set against ptablebasew & ptablebaseh 
    closeyt=22                                          ;Top y position of leave table button in relation to the resolution set against ptablebasew & ptablebaseh 
    closeyb=52                                          ;Bottom y position of leave table button in relation to the resolution set against ptablebasew & ptablebaseh
    
    windowtitle= Logged In As ahk_class QWidget             ;Window title to match to find tables - (use window class (ahk_class prefixed))
    windowtitleexclude=Full Tilt                        ;Window title to exclude  
}
else if pokersite = cu         ;Change these settings for a custom site/application
{
    ptablebasew=483                                     ;Poker table base resolution width(For stars this is the smallest table resolution (483 x 353)
    ptablebaseh=353                                     ;Poker table base resolution height(For stars this is the smallest table resolution (483 x 353)
    closexl=418                                         ;Left x position of leave table button in relation to the resolution set against ptablebasew & ptablebaseh 
    closexr=481                                         ;Right x position of leave table button in relation to the resolution set against ptablebasew & ptablebaseh 
    closeyt=24                                          ;Top y position of leave table button in relation to the resolution set against ptablebasew & ptablebaseh 
    closeyb=42                                          ;Bottom y position of leave table button in relation to the resolution set against ptablebasew & ptablebaseh
    windowtitle=My win ahk_class AutoHotkeyGUI          ;Window title to match to find tables - Pokerstars (use control type)
    windowtitleexclude=                                 ;Window title to exclude 
}

hModule := DllCall("LoadLibrary", "str", "dwmapi.dll")       ;Load dwmapi.dll for handling thumbnails
SysGet, borderxa, 45                                         ;Size of the x window 3D border
Sysget, borderya, 46                                         ;Size of the y window 3D border
Sysget, captionha, 4                                         ;Size of the caption
Sysget, borderxb, 5                                          ;Size of the x window normal border
Sysget, borderyb, 6                                          ;Size of the y window normal border
borderx := borderxa + borderxb                               ;Total size of the x border
bordery := borderya + borderyb                               ;Total size of the y border
captionh := captionha + bordery                             ;Total size of the caption
clientareah := hostwindowh - bordery - captionh              ;Height of the area thumbnail windows can be placed in
clientareaw := hostwindoww - borderx - borderx               ;Width of the area thumbnail windows can be placed in
clientareax := hostwindowx + borderx
clientareay := hostwindowy + captionh
ptablehwratio := (ptablebaseh-captionha) / ptablebasew                  ;Ratio used for scaling thumbnail window size
lastactive:=0
thisactive:=0
borderguix:=clientareax
borderguiy:=clientareay

;Create preview window
Gui, 99: +LastFound +LabelForm1_
Gui, 99: Color, 000000 
WinSet, TransColor, 000000                    
target := WinExist()

;Test calls
;DLL hook for detecting window activations (for colored active table borders)
DllCall( "RegisterShellHookWindow", UInt,target) 
MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
OnMessage( MsgNum, "ShellMessage" )

;Create GUi's for colored border
;Gui 1 for active table
Gui, 1:+LastFound +Owner99 
Gui, 1:Color, %activebordercolor%
Gui, 1:-Caption -Border
activegui:=WinExist()

;Gui 2 for last active table
Gui, 2:+LastFound +Owner99 
Gui, 2:Color, %lactivebordercolor%
Gui, 2:-Caption -Border
lactivegui:=WinExist()


;Create Empty variables for storing thumbnail links
Loop, 98
{
    source%A_Index%_hnd:=0
    source%A_Index%_thumb:=0
    source%A_Index%_wide:=0
}

;Show existing tables
WinGet, list, list, %windowtitle%, ,%windowtitleexclude%
tblcount:=0
Loop, %list%
{
    tblcount++
    tblcount%tblcount%:=list%A_Index% 
}

currentcnt:=tblcount                           

;Calculate child window size and number per row
tablesw := numtablesw(currentcnt)
childwinw := Floor(calcwinsize(tablesw, currentcnt))
childwinh := Floor(childwinw * ptablehwratio)

;Create child windows for tables already open
Loop, %tblcount%
{
    thisid:=tblcount%A_Index%
    addchild(A_Index, thisid)
}

Gui, 99: Show, w%hostwindoww% h%hostwindowh% x%hostwindowx% y%hostwindowy%, %tblcount% Tables Previewed

;Infinite loop to monitor table opens, closes & resizes.
Loop,
{    
    Sleep, %refreshrate%
    
    wasredrawn:=0
    
    ;Find any closed tables
    Loop, 98
    {
        thishnd:=source%A_Index%_hnd
        if (thishnd > 0)
        {
            IfWinNotExist, ahk_id %thishnd%
            {
                source%A_Index%_hnd:=0
                source%A_Index%_thumb:=0
                source%A_Index%_wide:=0
            }
        }
    }
        
    ;Get new list of tables
    WinGet, list, list, %windowtitle%, ,%windowtitleexclude% 
    tblcount:=0
    Loop, %list%
    {
        tblcount++
        tblcount%tblcount%:=list%A_Index%    
    }    
    
    ;Find any new tables
    Loop, %tblcount%
    {
        thishnd:=tblcount%A_Index%
        found:=0
        Loop,98
        {
            if (source%A_Index%_hnd = thishnd)
            {
                found:=1
                break            
            }
        }
        
        ;New table found
        if (found = 0)
        {
            ;Find first avail slot
            newslot:=0
            Loop,98
            {
                if (source%A_Index%_hnd = 0)
                {
                    newslot:=A_Index
                    break                    
                }
            }

            ;Determine whether an existing slot is available or a recalculation is required as its a new slot.
            if (newslot <= currentcnt)         ;Existing slot taken, no recalc required
            {
                addchild(newslot, thishnd)
            }
            else                                ;Need to recalculate to determine if new rows or columns are required
            {
                currentcnt += 1
                oldcols:=tablesw
                oldw:=childwinw
                tablesw := numtablesw(currentcnt)
                childwinw := Floor(calcwinsize(tablesw, currentcnt))
                childwinh := Floor(childwinw * ptablehwratio)
                if (oldcols = tablesw) and (oldw = childwinw)       ;Still a slot left at the end of the current config
                    addchild(newslot, thishnd)
                else                                                ;Need to redraw all thumbnails with diff config
                {
                    Loop, 98
                    {
                        unregisterthumbnail(source%A_Index%_thumb)            ;Unregister existing thumbs                         
                    }
                    
                    Loop, %tblcount%
                    {
                        if(A_Index < tblcount)
                        {
                            thisid:=source%A_Index%_hnd
                            addchild(A_Index, thisid)
                        }
                        else
                        {
                            thisid:=tblcount%A_Index%
                            addchild(A_Index, thishnd)
                        }
                    }
                    wasredrawn:=1
                }
            }
        }
    }
    
    ;Check if any tables have been resized and if so, redraw
    if (wasredrawn = 0)                 
    {
        Loop, %tblcount%
        {
            retable:=source%A_Index%_hnd
            WinGetPos,wx,wy,ww,wh,ahk_id %retable%
            if (ww != source%A_Index%_wide)
            {
                unregisterthumbnail(source%A_Index%_thumb)
                addchild(A_Index, retable)
            }
        }
    }
    WinSetTitle, ahk_id %target%, ,%tblcount% Tables Previewed
}

Return


;Function to register the thumbnail to the GUI
registerthumbnail(target, source, thumbnum)
{
    Global    
    
    VarSetCapacity(thumbnail,4,0)
    hr1:=DllCall("dwmapi\DwmRegisterThumbnail",UInt,target,UInt,source,UInt, &thumbnail)
    thumbnail:=Numget(thumbnail,0,true)
    source%thumbnum%_hnd:=source
    source%thumbnum%_thumb:=thumbnail
    
    updatethumbnail(source, thumbnum, thumbnail)
}

;Function sets thumbnail properties and displays
updatethumbnail(source, thumbnum, thumbnail)
{    
    /*
    DWM_TNP_RECTDESTINATION (0x00000001)
    Indicates a value for rcDestination has been specified.
    DWM_TNP_RECTSOURCE (0x00000002)
    Indicates a value for rcSource has been specified.
    DWM_TNP_OPACITY (0x00000004)
    Indicates a value for opacity has been specified.
    DWM_TNP_VISIBLE (0x00000008)
    Indicates a value for fVisible has been specified.
    DWM_TNP_SOURCECLIENTAREAONLY (0x00000010)
    Indicates a value for fSourceClientAreaOnly has been specified.
    */
    
    Global  
    
    dwFlags:=0X1 | 0x2 | 0x10
    opacity:=150
    fVisible:=1
    fSourceClientAreaOnly:=1
    
    ;Determine where to position thumbnail based on its number
    rownum := Ceil(thumbnum / tablesw)
    colnum := Mod(thumbnum - 1,tablesw)
    newx := ((colnum) * childwinw)
    newy := ((rownum - 1) * childwinh) 
    neww := newx + childwinw
    newh := newy + childwinh
    
    WinGetPos,wx,wy,ww,wh,ahk_id %source%
    
    VarSetCapacity(dskThumbProps,45,0)
    ;struct _DWM_THUMBNAIL_PROPERTIES
    NumPut(dwFlags,dskThumbProps,0,"UInt")
    NumPut(newx,dskThumbProps,4,"Int")                     ;x coord in relation to the target
    NumPut(newy,dskThumbProps,8,"Int")                     ;y coord in relation to the target
    NumPut(neww,dskThumbProps,12,"Int")                   ;x coord of bottom of the thumb in relation to the target
    NumPut(newh,dskThumbProps,16,"Int")                   ;y coord of the right edge of the thumb in relation to the target
    NumPut(0,dskThumbProps,20,"Int")                      ;x coord of target to start thumb
    NumPut(0,dskThumbProps,24,"Int")                      ;y coord of target to start thumb
    NumPut(ww-borderx,dskThumbProps,28,"Int")                    ;width of the thumb in relation to the source
    NumPut(wh-captionh,dskThumbProps,32,"Int")                    ;height of the thumb in relation to the source
    NumPut(opacity,dskThumbProps,36,"UChar")
    NumPut(fVisible,dskThumbProps,37,"Int")
    NumPut(fSourceClientAreaOnly,dskThumbProps,41,"Int")
    hr2:=DllCall("dwmapi\DwmUpdateThumbnailProperties","UInt",thumbnail,"UInt",&dskThumbProps) 
    source%thumbnum%_wide:=ww-(borderx*2)
   
}


unregisterthumbnail(unthumbnail)
{
    ur1:=DllCall("dwmapi.dll\DwmUnregisterThumbnail", "UInt", unthumbnail)
}


;Function to determine the optimal number of tables wide to show in preview window
numtablesw(totaltables)
{
    if(totaltables > "1")
    {   
        global clientareah
        global clientareaw
        global ptablehwratio
        
        wsize := 0
        wnum := 0
        
        ;The loop value will equal the number of tables per row
        Loop,%totaltables%
        {            
            thiswsize := floor(calcwinsize(A_Index, totaltables))
            
            if (thiswsize >= wsize)
            {    
                wsize := thiswsize
                wnum := A_Index
            }
        }
        return, %wnum%
    }
    Else 
    {
        return, 1
    }
}

;Calculates child window size based on number of tables per row
calcwinsize(tblperrow, totaltables)
{
    global clientareaw
    global clientareah
    global ptablehwratio
    
    calcwsize := clientareaw / tblperrow
    calcrownum := ceil(totaltables / tblperrow)
            
    if ((clientareah / calcrownum) < (ptablehwratio * calcwsize))
    {
        calcwsize := (1 / ptablehwratio) * (clientareah / calcrownum)
    }
    
    Return, calcwsize    
}

;Adds child window to the preview pane
addchild(usenum, previewid)
{
    Global childwinw
    Global childwinh
    Global hostwindoww
    Global hostwindowh
    Global target

    if (usenum > 0) ;If usenum is 0 it is not part of the initial load of existing windows
    {
        registerthumbnail(target, previewid, usenum)
        Return
    }
}

;Function to determine what happens when a thumbnail is clicked
clickevent(wparam)
{
    local id,win,mousex,mousey,thisslot,thisrow,thiscol,xl,xr,yt,yb
    coordmode,mouse,relative
    mousegetpos,mousex,mousey,id
    if (id=target)
    {
        if(tblcount>0)
        {
            ;Calculate slot number
            thisrow:=Ceil((mousey - captionh) / childwinh)
            thiscol:=Ceil((mousex - borderx) / childwinw)
            thisslot:=((thisrow-1)*tablesw)+thiscol
            getcoords(thisslot,thisrow,thiscol,closexl,closexr,closeyt,closeyb,xl,xr,yt,yb)
            win:=source%thisslot%_hnd
            ;Action to take
            if (mousex>=(xl-1) and mousex<=(xr-1) and mousey>=(yt+1) and mousey<=(yb+1))    ;Close table
                if pokersite = ps
                {
                    WinGetTitle, closetitle, ahk_id%win% 
                    winclose,ahk_id%win%  
                    stringleft,endtitle,closetitle,3
                    Loop
                    {
                        IfWinNotExist, ahk_id%win% 
                            break
                        
                        WinGet,closeID,ID,%endtitle% ahk_class #32770
                        if (closeID > 0)
                        {
                            WinActivate,ahk_id%closeID% 
                            SendInput {Enter}
                        }
                    }
                }
                else if pokersite = ft
                {
                    WinGetTitle, closetitle, ahk_id%win% 
                    winclose,ahk_id%win%  
                    stringleft,endtitle,closetitle,3
                    Loop
                    {
                        IfWinNotExist, ahk_id%win% 
                            break
                        
                        WinGet,closeID,ID,%endtitle% ahk_class QWidget,,Logged
                        if (closeID > 0)
                        {
                            WinActivate,ahk_id%closeID% 
                            SendInput {Tab}{Enter}
                        }
                    }                
                }
                else
                {
                    winclose,ahk_id%win%                
                }
            else
            {        
                if (win >0)                                                 ;Activate the window
                    winactivate,ahk_id%win%
            }
        }
    }
}

;Calculates the four coordinates of a rectangle in a thumbnail
getcoords(calcslot,thisrow,thiscol,rectxl,rectxr,rectyt,rectyb,ByRef thisxl,ByRef thisxr,ByRef thisyt,ByRef thisyb)
{
    Global    
    
    ;Calculate coords
    realw:=source%calcslot%_wide
    thisx:= ((thiscol-1) * childwinw)+borderx
    thisy:= ((thisrow - 1) * childwinh)+captionh ;+bordery 
    thisxl:=floor((childwinw*((rectxl-borderx)/(ptablebasew-borderx))) + thisx)
    thisxr:=floor((childwinw*((rectxr-borderx)/(ptablebasew-borderx))) + thisx) 
    thisyt:=floor((childwinh*((rectyt-captionh)/(ptablebaseh-captionh-bordery))) + thisy)
    thisyb:=floor((childwinh*((rectyb-captionh)/(ptablebaseh-captionh-bordery))) + thisy) 
    
    return
}

;Function for docking the border gui's to the preview window
WM_WINDOWPOSCHANGING(wParam, lParam) 
{ 
    Global captionh,borderx,thisactive,lastactive, borderguix, borderguiy
    if (A_Gui = 99) && !(NumGet(lParam+24) & 0x2) ; SWP_NOMOVE=0x2 
    { 
        ; Since WM_WINDOWPOSCHANGING happens *before* the window moves, 
        ; we must get the new position from the WINDOWPOS pointed to by lParam. 
        borderguix := NumGet(lParam+8,0,"int") + borderx
        borderguiy := NumGet(lParam+12,0,"int") + captionh
        
        ; Move - but don't activate - Border Gui's 
        If(thisactive>0)
            Gui, 1:Show, X%borderguix% Y%borderguiy% NA
        
        if(lastactive>0)
            Gui, 2:Show, X%borderguix% Y%borderguiy% NA
    } 
} 

;Function for detecting window activations for setting border colors
ShellMessage( wParam,lParam )
{
    Global
    
    If ((wParam = 4 or wParam = 32772) And WinExist( "ahk_id " lParam ))                       ;  HSHELL_WINDOWACTIVATED = 4, HSHELL_RUDEAPPACTIVATED = 32772
    {    
        ;If the activated window is in the list set the active and last active window
        matchcnt:=0
        Loop, 98 
        {
            matchcnt++
            if(source%matchcnt%_hnd = lParam)
                break
        }    
        if (matchcnt < 98 and thisactive != lParam)
        {
            ;Set and display active table border gui's
            drawborder(1,matchcnt)
            lastactive:=thisactive
            thisactive:=lParam  
            if(lastactive > 0)
            {
                matchcnt:=0
                Loop, 98 
                {
                    matchcnt++
                    if(source%matchcnt%_hnd = lastactive)
                        break
                } 
                drawborder(2,matchcnt)
            }
        }
    }
}

drawborder(guinum, slotnumb)
{
    Global
    ;Get the thumbnail outer edge coords
    thisrow:=Ceil(slotnumb/tablesw)
    thiscol:=Mod(slotnumb - 1,tablesw)+1
    getcoords(slotnumb,thisrow,thiscol,borderx,ptablebasew-borderx,captionh,ptablebaseh-bordery,xl,xr,yt,yb)
    
    if(guinum=1)
        thisgui:=activegui
    else
        thisgui:=lactivegui
    
    xl-=borderx
    xr-=borderx
    yt-=captionh
    yb-=captionh    
    
    xli:=xl+activebordersize
    xri:=xr-activebordersize
    yti:=yt+activebordersize
    ybi:=yb-activebordersize
    neww:=xr-xl
    newh:=yb-yt
        
    ;Draw the border gui
    WinSet, Region, %xl%-%yt% %xr%-%yt% %xr%-%yb% %xl%-%yb% %xl%-%yt%   %xli%-%yti% %xri%-%yti% %xri%-%ybi% %xli%-%ybi% %xli%-%yti%, ahk_id %thisgui%   
    Gui, %guinum%:Show, x%borderguix% y%borderguiy% W%hostwindoww% H%hostwindowh% NA
}

Form1_Close:
	ExitApp
return
AHK Script: Stacked Table Previewer Quote
12-27-2010 , 12:43 PM
hey, im new to scripts and want to run his one for my pokerstars cash games, how would i do this????? thanks
AHK Script: Stacked Table Previewer Quote
12-28-2010 , 01:31 AM
This thread explains how to install autohotkey and run a script: http://forumserver.twoplustwo.com/45...thread-595034/

In particular:

Download and install Autohotkey from here: http://www.autohotkey.com/download/A...keyInstall.exe
Right-click desktop (or whatever location on your disk), choose New > Autohotkey Script.
Rename the new script from "New AutoHotkey Script.ahk" to "Your Choice of Name.ahk". Don't forget the ".ahk"!
Right-click file, choose Edit Script.
Paste in whatever script, save and close.
Double-click file to run script.
AHK Script: Stacked Table Previewer Quote
12-29-2010 , 02:47 AM
Hi

I love this script but have a request for an additional function. I don't know how hard it is do but would love any help or suggestions.

I want auto close any tables that I have sat out on and have this feature able to be toggled on or off.

Personally, I would want it to work on both pokerstars and iPoker and how I would imagine it to work would be to have extra settings in the config e.g.

autoclose_toggle_hotkey = ???
if site = ps
{
sit_out_x = ???
sit_out_y = ???
color_to_check_for = ???
}

So basically, while the script is looping through all the tables it would check if hero was sat out then act accordingly depending if the function was enabled via the toggle.

Again, any help would be appreciated. Thanks!
AHK Script: Stacked Table Previewer Quote
03-22-2011 , 07:25 AM
So I have downloaded everything but now can't get it working with Ipoker (WilliamHill)
please can someone give me the settings?

It's all running smooth with Pokerstars, I just do not know how to change it.
AHK Script: Stacked Table Previewer Quote
03-22-2011 , 07:53 AM
Quote:
Originally Posted by pokerash
Hi

I love this script but have a request for an additional function. I don't know how hard it is do but would love any help or suggestions.

I want auto close any tables that I have sat out on and have this feature able to be toggled on or off.

Personally, I would want it to work on both pokerstars and iPoker and how I would imagine it to work would be to have extra settings in the config e.g.

autoclose_toggle_hotkey = ???
if site = ps
{
sit_out_x = ???
sit_out_y = ???
color_to_check_for = ???
}

So basically, while the script is looping through all the tables it would check if hero was sat out then act accordingly depending if the function was enabled via the toggle.

Again, any help would be appreciated. Thanks!

Could you please copy and paste your script here for me when it is set for ipoker as i hav'nt got a clue what to do haha
AHK Script: Stacked Table Previewer Quote
03-23-2011 , 04:50 AM
I managed to sort it.
AHK Script: Stacked Table Previewer Quote
03-23-2011 , 10:25 AM
This is great OP tyvm!
AHK Script: Stacked Table Previewer Quote
03-23-2011 , 01:09 PM
lovin this script tis the nuts and will be donating at the end of the week one problem i have only tried this latest transparent version and it doesn't let me click a table to pop it up. That is a functionality of this or am I mistaken anyway love it just wish i was able to pop up my table by clicking on the table viewer.

If it's relevant i use alot of AHK scripts to play do you think any of these could be interfering i use SNG Opener, Starshotkeys, tablecount, and sometimes starscash other than that one problem everything seems pretty ok!

There is one other thing but its minor and that is that it doesn't always refresh perfect if you minimize a table in the stack it goes a little funny in the viewer.

edit : figured it out can't use the transparent one because it allows you to click through the window as soon as i switched to the black i can now click the thumbnails to activate a table so unless there is a way to make it maybe almost transparent then it might work but other than that the tranparent one is broken for clickability

Last edited by DeuceThreeFlush; 03-23-2011 at 01:26 PM. Reason: figured out the problem
AHK Script: Stacked Table Previewer Quote
03-23-2011 , 01:28 PM
Now I can't leave home without this thank you so much freo keep up the good work! Definately a keeper in my arsenal.
AHK Script: Stacked Table Previewer Quote
03-23-2011 , 03:26 PM
AFAIK when minimized a window does not paint it's contents, so yes expect weirdness when trying to scan from a minimized window.

I'm not familiar with the transparent version (I'm on XP so I can't run any version of this) - but AFAIK in AHK transparency values go from 0 (solid) to 255 (invisible) - or maybe the other way around, can't remember. anyhow, there is a mid-point around transparency value of 127 - less than this and it receives clicks, more than this and clicks "fall through" to underneath. try adjusting the level of transparency if possible. Not sure if this will work, I might be getting mixed up with something else (Stars table mods certainly use the same system, you can't click on a >50% transparent "seat open" button) - but it's worth a try.
AHK Script: Stacked Table Previewer Quote
03-24-2011 , 11:57 PM
Yeh the aero thumbnails by will not show minimised windows correctly. Thats a Microsoft thing unfortunately.
AHK Script: Stacked Table Previewer Quote
03-26-2011 , 05:03 PM
Found this script a couple of days ago, and everything is working great. i think it could be improved by adding a feature that automatically changes your backgroung depending on game state. For example, one color background for early stage tournaments, one for middle, one for late, and maybe one for short stacked tournaments. That way you can just look at your thumbnails and know which tourny is in which stage. Full tilt puts the blind level in the title, so i dont think this would be to hard to do. I am going to try to write a script to change the background when antes kick in, but I do not have any experience so it will be a challenge to get it to work. what do you guys think about this idea?
AHK Script: Stacked Table Previewer Quote
03-26-2011 , 05:14 PM
Also, is there a way to run pokerstars and full tilt in the same GUI, or do you need to run 2 scripts. One for each site.
AHK Script: Stacked Table Previewer Quote

      
m