Jump to content

Recommended Posts

Posted

Is there a command to do a constant check to see if a window is active? Then if it isnt, to run a command? I just don't want to have to do a "if winactive ("window") then" command after every line. :D

Posted (edited)

Maybe an example of what you want to do could help us. Commands usually run fast enough that you do not need to constantly check if a win is active.

Edit: look at Adlib

Opt("WinWaitDelay", 50) ;50 millisecs; see help file
AdlibEnable("myadlib", 50);check every 50 milliseconds
;... your code goes here...
Exit

Func myadlib()
    If Not WinActive("window") Then WinActivate("window")
EndFunc
Edited by CyberSlug
Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!

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
  • Recently Browsing   0 members

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