I had an AHK hotkey for toggling the EG window, and I'd very much like this to work again. I could not find a global hotkey in EG to toggle the EG window.
for reference, My AHK is the following
Code: Select all
IfWinNotActive, EventGhost ahk_class wxWindowNR
Run, C:\Program Files (x86)\EventGhost\EventGhost.exe, C:\Program Files (x86)\EventGhost
Else IfWinActive, EventGhost ahk_class wxWindowNR
WinMinimize, EventGhost ahk_class wxWindowNR
ReturnI am going to try Avoid the issue of sending keys by invoking the tray menu item via PostMessage/SendMessage and WM_COMMAND/WM_SYSCOMMAND, as per https://autohotkey.com/boards/viewtopic.php?f=6&t=31971
EIDT: minimizing the window via AHK still works, FYI.
