Jump to content

Recommended Posts

Posted (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? :whistle:

Thanks in advance. :dance:

Edit: spelling

Edited by sazen
  • Moderators
Posted

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.

Posted

$enabled = 0

do
    sleep(100)
    $enabled = controlCommand("Window title", "Window text", "Control ID", "isEnabled")
until $enabled

You'll need to determine the correct first three arguments to ControlCommand() via AutoIt Window Info.

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