Re: WinWaitActive( ... ) for all windows with any title but no without title
Re: WinWaitActive( ... ) for all windows with any title but no without title
I need to use WinWaitActive(...) to wait for any window with any title, but NO window without title: is it possible?
Re: Re: WinWaitActive( ... ) for all windows with any title but no without title
Code: Select all
#Requires AutoHotkey v2.0
SetTitleMatchMode 'RegEx'
WinWaitActive '.'
MsgBox WinGetTitle(), 'Window title', 'Iconi'
Re: Re: WinWaitActive( ... ) for all windows with any title but no without title
thank you very much
Sorry for my previous mistake.
Sorry for my previous mistake.