All credit for the original goes to: https://github.com/Descolada/UIAutomation
List of Changes:
New keybind of f3 for generating code, macro creator is front and center.
Basics:
This application helps navigate Windows desktop applications.
Download all code
Run viewer
F1 to scan UI items
F3 to generate code
el := WinExist(" github.com/Descolada/UIAutomation ahk_exe AutoHotkey.exe")
el := UI(el) ; the handle can be re-used for various actions
Do_Click(el)
UI(el){ return el }
Do_Click(el){
}
el.Click()
}