I am trying to write a script in AHK to detect windows popup and capture the message.
For example: Program X will create a popup with a message. The AHK script should be able to detect the popup and get the message in it.
Is this possible?
I tried the example from http://www.autohotkey.com/board/topic/23221-run-command-prompt-commands-and-capture-output/ but it is too complicated.
I just need to capture the message of a popup using AHK script.
ahk_exe
or evenahk_pid
are pretty good identifiers, too. Anyway, message boxes often can only be detected by usingDetectHiddenWindows, On
. – MCL