sudhanM Posted December 31, 2009 Posted December 31, 2009 i want to use Regular expression while identifying a window. so in the title how can i express that. eg: i want to close a window with a title like Notepad(s)
Moderators SmOke_N Posted December 31, 2009 Moderators Posted December 31, 2009 Global $h_wnd = 0 While 1 $h_wnd = WinGetHandle("[REGEXPTITLE:(?i).*?NotePad\(s\).*?]") If Not $h_wnd Then ExitLoop WinClose($h_wnd) WEndWill close any window with "Notepad(s)" (upper or lower case) in the title. 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.
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