View Single Post
  #8  
Old 01-29-2007, 06:16 PM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: FT Software Boggle

Steel,

Some silly dialog is stopping you from interacting with the FT lobby.

Why they use modal dialogs for login, announcements etc. is beyond me [img]/images/graemlins/confused.gif[/img]. And then to not check they will appear on-screen [img]/images/graemlins/mad.gif[/img].

If this is what is causing your trouble, you could try this script I just made (well, copied out of my resizer code)...

It will move all dialogs to top/left (0,0).

MoveFTDialogs.ahk
<font class="small">Code:</font><hr /><pre>
#NoEnv
#Persistent
#SingleInstance, Force
SendMode Input


SetTimer, MoveDialogs, 1000
return

MoveDialogs:
WinGet, pid, pid, ahk_class FTCLobby

WinGet, idlist, list, ahk_pid%pid% ahk_class #32770
Loop, %idlist%
{
id := idlist%A_Index%
;WinSet, AlwaysOnTop, On, ahk_id%id%
WinGetPos, x, y, , , ahk_id%id%
if (x != 0 || y != 0)
{
WinMove, ahk_id%id%, , 0,0
}
}
return
</pre><hr />

Hopefully this helps you,

dave.
Reply With Quote