Skip to content

Instantly share code, notes, and snippets.

View Ixiko's full-sized avatar

Ixiko Ixiko

  • no company - working for my own
  • Germany
View GitHub Profile
@Lexikos
Lexikos / menu-search.ahk
Created March 7, 2013 11:58
Window Menu Search - tap the Alt key to search the active window's menus. http://www.autohotkey.com/board/topic/91067-/
SetBatchLines -1
OnMessage(0x100, "GuiKeyDown")
OnMessage(0x6, "GuiActivate")
return
Alt::
Gui +LastFoundExist
if WinActive()
goto GuiEscape
Gui Destroy