Created
October 23, 2020 15:06
-
-
Save JoeGlines/77d3d0611e4e6a52d85043f776b2a936 to your computer and use it in GitHub Desktop.
Before learning how easy GUIs are with AutoHotkey
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
InputBox, Search, Search sites with Google:,,,700, 100 | |
if (Search= "") or (Error = 1) | |
return | |
Run, chrome.exe "http://www.google.com/search?q=%Search%+site:stackoverflow.com" | |
Run, chrome.exe "http://www.google.com/search?q=%Search%+site:https://stackoverflow.com/questions/tagged/autohotkey" | |
Run, chrome.exe "http://www.google.com/search?q=%Search%+site:autohotkey.com" | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment