Skip to content

Instantly share code, notes, and snippets.

View indigofairyx's full-sized avatar

Xavier indigofairyx

  • west, usa
  • 02:08 (UTC -07:00)
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