Jump to content

Question about WinList & WinActivate


 Share

Recommended Posts

I'm working on an app launcher. I am trying to make the 'guts' of the script with a test GUI. I'm trying to make it if there is only one window open, and the window is the app launcher, it automaticaly takes focus. Heres my current code:

#Include <GUIConstants.au3>
$wins = WinList()
HotKeySet("!q", "endo")
$GUI = GUICreate("App Launcher", @DesktopWidth, @DesktopHeight)
$Label1 = GUICtrlCreateLabel("Launch MOZILLA FIREFOX", 10, 10)
GUISetState(@SW_SHOW, $GUI)
While 1
    $msg = GUIGetMsg()
    If $wins[0][0] = 1 and $wins[1][0] = "App Launcher" Then WinActivate("App Launcher")
If $msg = $Label1 Then Run(@ProgramFilesDir &"/Mozilla Firefox/firefox.exe")
WEnd
Func endo()
    Exit
EndFunc

Any idea why the program won't take focus (Like i tested by minimizing it)

Link to comment
Share on other sites

HI,

I guess you need to check for only visible windows, otherwise there ' ll be always other windows around.

So long,

Mega

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...