sazen Posted August 25, 2005 Share Posted August 25, 2005 (edited) Hi, I've been studying the Help file but haven't managed to solve this. I'm trying to make a script that waits for a checkbox to become enabled in the target application (which I'm trying to controll) and then check it. Since it takes a diffrent amount of time for the application to enable the checkbox, sleep(x) doesn't work very well. Any ideas? Thanks in advance. Edit: spelling Edited August 26, 2005 by sazen Link to comment Share on other sites More sharing options...
Moderators SmOke_N Posted August 25, 2005 Moderators Share Posted August 25, 2005 Do Sleep(10) Until ; Your command becomes true Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer. Link to comment Share on other sites More sharing options...
LxP Posted August 26, 2005 Share Posted August 26, 2005 $enabled = 0 do sleep(100) $enabled = controlCommand("Window title", "Window text", "Control ID", "isEnabled") until $enabledYou'll need to determine the correct first three arguments to ControlCommand() via AutoIt Window Info. Link to comment Share on other sites More sharing options...
sazen Posted September 2, 2005 Author Share Posted September 2, 2005 Thank you! Link to comment Share on other sites More sharing options...
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