lee321987 Posted March 18, 2020 Posted March 18, 2020 (edited) I can't match a window with this title: HwndWrapper[FastBoot.exe;;d9393b52-8924-4387-b35d-41f4cb70645b] WinExists("[REGEXPTITLE:HwndWrapper.*]") does not match it. I assume it has something to do with the semicolons and/or brackets in the title. Is there any way to do this? Edited March 18, 2020 by lee321987
Zedna Posted March 19, 2020 Posted March 19, 2020 Try WinExists("HwndWrapper") Resources UDF ResourcesEx UDF AutoIt Forum Search
Bitnugger Posted April 10, 2020 Posted April 10, 2020 (edited) For me it works with AutoIt 3.3.14.5. Which version of AutoIt are you using? GUICreate('HwndWrapper[FastBoot.exe;;d9393b52-8924-4387-b35d-41f4cb70645b]') ConsoleWrite(WinExists("[REGEXPTITLE:HwndWrapper.*]") & @CRLF) ; = 1 On 3/18/2020 at 9:53 PM, lee321987 said: I assume it has something to do with the semicolons and/or brackets in the title. That would only be the case if you used a meta character as part of the search - e.g. WinExists ("[REGEXPTITLE: HwndWrapper[FastBoot.exe. *]"). You can mask the meta characters with \ ... WinExists("[REGEXPTITLE:HwndWrapper\[FastBoot.exe.*]") Edited April 10, 2020 by Bitnugger
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