Created
March 28, 2016 14:04
-
-
Save usaturn/b730f7a3d78026b59074 to your computer and use it in GitHub Desktop.
AHK で google 検索
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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