Skip to content

Instantly share code, notes, and snippets.

@usaturn
Created March 28, 2016 14:04
Show Gist options
  • Save usaturn/b730f7a3d78026b59074 to your computer and use it in GitHub Desktop.
Save usaturn/b730f7a3d78026b59074 to your computer and use it in GitHub Desktop.
AHK で google 検索
serach_google(browser) {
InputBox, UserInput, Google Serach, , ,400, 100
If ErrorLevel = 0
Run %browser% https://www.google.co.jp/webhp#q=%UserInput%
Else
MsgBox, %ErrorLevel% %UserInput% not 0
}
^!g::serach_google("D:\tools\browser\Slimjet\slimjet.exe")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment