Post by boiler » 27 Mar 2017, 10:32
Run this script (replacing "YourWindowTitleHere" with the title of your window) when your window is visible, then minimize it, and it should show you the title after it becomes minimized. Your other option is to get the ID (Hwnd) of the window before it's minimized since it should remain the same after it's minimized, so you can still refer to as that like this script does. I don't know enough about PMC to tell you exactly how you do that in there, but I would think you can.
Run this script (replacing "YourWindowTitleHere" with the title of your window) when your window is visible, then minimize it, and it should show you the title after it becomes minimized. Your other option is to get the ID (Hwnd) of the window before it's minimized since it should remain the same after it's minimized, so you can still refer to as that like this script does. I don't know enough about PMC to tell you exactly how you do that in there, but I would think you can.
[code]WinGet, ID, ID, YourWindowTitleHere
Loop
{
WinGetTitle, WinTitle, ahk_id %ID%
ToolTip, Window title:`n %WinTitle%`n(Press Esc to exit)
Sleep, 100
}
return
Esc::ExitApp[/code]