strate Posted February 14, 2006 Posted February 14, 2006 I'm working on a script that will run another program, sometimes an error message will be generated by the program. How can I create a script that will run until complete, but take action if a window pops up? INI TreeViewA bus station is where a bus stops, a train station is where a train stops. Onmy desk I have a work station...
GaryFrost Posted February 14, 2006 Posted February 14, 2006 I'm working on a script that will run another program, sometimes an error message will be generated by the program. How can I create a script that will run until complete, but take action if a window pops up? Look at the AdlibEnable SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
Helge Posted February 14, 2006 Posted February 14, 2006 Maybe something like this : $pid = Run("process") Do Sleep(10) If WinExist("title") Then WinKill("title") Until NOT ProcessExists($pid)
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now