Two Plus Two Newer Archives  

Go Back   Two Plus Two Newer Archives > Internet Gambling > Software
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 09-15-2007, 11:49 AM
Spec Spec is offline
Member
 
Join Date: Mar 2005
Posts: 65
Default Absolute - keep lobby on top?

Is this possible? It's very frustrating having the lobby minimize each time you're opening new tables.

Any solutions?
Reply With Quote
  #2  
Old 09-22-2007, 02:43 AM
Spec Spec is offline
Member
 
Join Date: Mar 2005
Posts: 65
Default Re: Absolute - keep lobby on top?

I'll pay somebody to make an AHK script that can do this. IM me at sobfr .
Reply With Quote
  #3  
Old 09-22-2007, 05:51 PM
PLOlover PLOlover is offline
Senior Member
 
Join Date: Jun 2005
Posts: 3,465
Default Re: Absolute - keep lobby on top?

this will make any window always on top or not when you press F1 key. just something I had lying around.

[ QUOTE ]

#Persistent

F1:: ; Press F1 always on top toggle
MouseGetPos,,, MouseWin
WinSet, AlwaysOnTop, toggle, ahk_id %MouseWin%

WinGet, ExStyle, ExStyle, ahk_id %MouseWin%
if (ExStyle & 0x8) ; 0x8 is WS_EX_TOPMOST.
message = ALWAYS ON TOP
else message = REGULAR
WinGetTitle, wind2, ahk_id %MouseWin%
ToolTip, %wind2%`n`n%message%
SetTimer, RemoveToolTip, 1000
return

;---------------------------------
RemoveToolTip:
SetTimer, RemoveToolTip, Off
ToolTip
return



[/ QUOTE ]
Reply With Quote
  #4  
Old 09-22-2007, 05:52 PM
PLOlover PLOlover is offline
Senior Member
 
Join Date: Jun 2005
Posts: 3,465
Default Re: Absolute - keep lobby on top?

actually I guess that won't workif it gets minimized.
Reply With Quote
  #5  
Old 09-22-2007, 05:55 PM
PLOlover PLOlover is offline
Senior Member
 
Join Date: Jun 2005
Posts: 3,465
Default Re: Absolute - keep lobby on top?

stars lobby keeper, just replace "Pokerstars Lobby" with whatever the title is of the absolute lobby. this keeps it unminimized.

[ QUOTE ]
#NoEnv
#Persistent
#SingleInstance force

interval = 200 ; period between refreshes

Loop
{
RestoreLobby()
Sleep %interval%
}

RestoreLobby()
{
SetTitleMatchMode 2
IfWinExist, PokerStars Lobby,,
WinRestore
}

[/ QUOTE ]
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 04:15 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.