flyonthewall Posted October 31, 2008 Posted October 31, 2008 hello,i have a script to setup "spyware terminator" and my ControlClick does not seem to work.any suggestions on what could be happening during the ControlClick here? i want to make sureto uncheck the toolbar.ControlClick ("Spyware Terminator Setup", "", "[CLASS:TCheckBox; TEXT:Enable Web Security Guard Toolbar (Recommended); INSTANCE:2]")i've also tried w/the IDControlClick ("Spyware Terminator Setup", "", 131916)thanks for any help.
PsaltyDS Posted October 31, 2008 Posted October 31, 2008 hello, i have a script to setup "spyware terminator" and my ControlClick does not seem to work. any suggestions on what could be happening during the ControlClick here? i want to make sure to uncheck the toolbar. ControlClick ("Spyware Terminator Setup", "", "[CLASS:TCheckBox; TEXT:Enable Web Security Guard Toolbar (Recommended); INSTANCE:2]") i've also tried w/the ID ControlClick ("Spyware Terminator Setup", "", 131916) thanks for any help. How about this: ControlCommand("Spyware Terminator Setup", "", "TCheckBox2", "check") Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
flyonthewall Posted October 31, 2008 Author Posted October 31, 2008 How about this: ControlCommand("Spyware Terminator Setup", "", "TCheckBox2", "check") did not work. thanks for the reply though. i'll keep trying.
flyonthewall Posted November 3, 2008 Author Posted November 3, 2008 i'm still having issues on "unchecking" this particular control using ControlClick w/Window Info and could really use some help pleasebelow are several different ways i've tried using ControlClick.ControlClick ("Spyware Terminator Setup", "", "[CLASS:TCheckbox; TEXT:Enable Web Security Guard Toolbar; INSTANCE:2]")ControlClick ("Spyware Terminator Setup", "", "[CLASS:TCheckbox; TEXT:Enable Web Security Guard Toolbar (Recommended); INSTANCE:2]")ControlClick ("Spyware Terminator Setup", "", 1966160)is there another way i could try to uncheck this control?screenshot of the software setup and Window Info below.
flyonthewall Posted November 3, 2008 Author Posted November 3, 2008 will ControlCommand work in this instance? are my parameters correct? ControlCommand ( "Spyware Terminator Setup", "Enable Web Security Guard Toolbar (Recommended)", "UnCheck", "" )
flyonthewall Posted November 5, 2008 Author Posted November 5, 2008 the Send ("{SPACE}") works but would appreciate any other suggestions. thanks in advance.
Steven Posted March 18, 2009 Posted March 18, 2009 (edited) the Send ("{SPACE}") works but would appreciate any other suggestions. thanks in advance. I had the same problem with checkboxes in general and the posts of this topic got it working. Please try: CODE ControlCommand("Spyware Terminator Setup","", "[CLASS:TCheckBox; INSTANCE:2]", "UnCheck", "") Note the difference between TCheckbox in the above examples and TCheckBox in this excaple... CAPITAL B! Edited March 18, 2009 by Steven
Xeirus Posted November 4, 2011 Posted November 4, 2011 I know this post is very old, but I wants to come in and thank you for the help, this thread solved a problem a had been having all day. Thank!
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