sazen Posted August 25, 2005 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
Moderators SmOke_N Posted August 25, 2005 Moderators 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.
LxP Posted August 26, 2005 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.
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