キーボードの「Search」ボタンでFirefoxの検索ボックスにフォーカスを移動
みんなもっとゴテゴテしたキーボード使おうよ!
Browser_Search:: ;; 起動してなかったら起動 IfWinNotExist, ahk_class MozillaUIWindowClass { Run, C:\PROGRA~1\MOZILL~1\FIREFOX.EXE } ;; フォーカスがあたってなかったらあてる IfWinActive, ahk_class MozillaUIWindowClass { Goto, Search } else { WinActivate, ahk_class MozillaUIWindowClass WinWaitActive, ahk_class MozillaUIWindowClass } ;; Firefoxで検索ボックスにフォーカス Search: Send, ^e return