Skip to content

About UIA version

zero-plusplus edited this page Sep 26, 2021 · 1 revision

Read more about UIA here.

There was a issue with my extension that it was not possible to debug the UIA version of AutoHotkey. The limitation has been avoided, but please be aware of the following limitations compared to normal debugging.

  • The runtime argument /ErrorStdOut will be ignored. This is due to the limitation of not being able to get the error message in case of a read error. For this reason, do not use the #ErrorStdOut directive
  • It is not possible to display messages to in the debug console by following code. Please use OutputDebug instead.
    FileAppend("message", "**")          ; Not displayed
    FileOpen("**", "w").write("message") ; Not displayed
    OutputDebug("message")               ; Displayed

In addition to the above issues, other limitations may also occur. If you find any, please report them in Issues.

Clone this wiki locally