Jump to content

Conditional checkbox


Go to solution Solved by Valuater,

Recommended Posts

Posted

I have a script that modifies the printing properties of a device. Instead of sending the spacebar to uncheck a particular checkbox, I want the script to be able to observe if the checkbox is already unchecked. In other words, uncheck the checkbox if checked, and no action if already unchecked. Here is the script thus far. The line in bold is where the action is taken on the checkbox.

I have looked at previous related posts and the help document but I can't tell which of them might apply here. I apologize ahead of time, I'm very new to scripting.

Run("control printers")
sleep(5000)
send("{A}")
send("{D}")
send("{O}")
send("{B}")
send("{E}")
send("{ENTER}")
sleep(2000)
send("{ALT DOWN}")
send("{P}")
send("{ALT UP}")
send("{DOWN}")
send("{DOWN}")
send("{ENTER}")
sleep(2000)
send("{TAB}")
send("{TAB}")
send("{TAB}")
send("{TAB}")
send("{TAB}")
send("{TAB}")
send("{TAB}")
send("{TAB}")
send("{TAB}")
send("{SPACE}")
send("{TAB}")
send("{TAB}")
send("{TAB}")
send("{ENTER}")
sleep(1000)
send("{ALT DOWN}")
send("{F4}")
send("{ALT UP}")
sleep(1000)
send("{ALT DOWN}")
send("{F4}")
send("{ALT UP}")

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
×
×
  • Create New...