Jump to content

Two WinWaitActive For One Process


tempman
 Share

Recommended Posts

  • Developers

Try:

While 1
    If WinActive("[CLASS:WordPadClass]", "") Or WinActive("[CLASS:Notepad]", "") Then ExitLoop
    Sleep(10)
WEnd
MsgBox(0, "Now", "You can write")

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Thank you, but when I implement a rest of code it will be one hell of a script with alot of while's... :)

And how do you think WinWaitActive works? ;)

If you're using it on multiple places, make it a function.

Quick example:

Func _ABC($sTitle1, $iTitle2)
    While 1
        If WinActive($sTitle1, "") Or WinActive($iTitle2, "") Then ExitLoop
        Sleep(10)
    WEnd
EndFunc
Link to comment
Share on other sites

You can use the Advanced Window Titles and Text handling shown in the help file. REGEXPCLASS can help make the initial example work if either window class is required using just 1 Win* function.

If WinWaitActive("[REGEXPCLASS:WordPadClass|Notepad]") Then
    MsgBox(0, "Now", "You can write")
EndIf

The pipe char "|", acts like the Or operator so it looks for either class of "WordPadClass" or "Notepad". :)

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...