motormad Posted November 13, 2010 Posted November 13, 2010 Sometimes if i fil in a form a 'alert windaw' appears. I want to be sure that i closed (with yes or no) this window before i move on. is this the best way of doing this? If WinExists("[title:Controle; CLASS:#32770]")=1 Then do WinActivate("[title:Controle; CLASS:#32770]") ControlClick("[title:Controle; CLASS:#32770]", "", "[CLASS:Button; INSTANCE:1]") until WinExists("[title:Controle; CLASS:#32770]")=0 endif
wakillon Posted November 13, 2010 Posted November 13, 2010 Sometimes if i fil in a form a 'alert windaw' appears. I want to be sure that i closed (with yes or no) this window before i move on. is this the best way of doing this? If WinExists("[title:Controle; CLASS:#32770]")=1 Then do WinActivate("[title:Controle; CLASS:#32770]") ControlClick("[title:Controle; CLASS:#32770]", "", "[CLASS:Button; INSTANCE:1]") until WinExists("[title:Controle; CLASS:#32770]")=0 endif you can try like this too... While WinExists("[title:Controle; CLASS:#32770]") WinActivate("[title:Controle; CLASS:#32770]") ControlClick("[title:Controle; CLASS:#32770]", "", "[CLASS:Button; INSTANCE:1]") WEnd AutoIt 3.3.18.0 X86 - SciTE 4.4.6.0 - WIN 11 24H2 X64 - Other Examples Scripts
motormad Posted November 13, 2010 Author Posted November 13, 2010 Thanx . Yep its shorter and therefor much better
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