AutoHotKey Scripting Basics – The RunWait Command

The RunWait command is an extension of the Run command. However, as the name suggest, the RunWait command waits for the specified program to finish executing before continuing. To simplify further, let’s consider once again the multi-line script example from the previous post: #m:: Run Notepad.exe Run www.yahoo.com Run Calc.exe Run www.google.com return As I explained before, … Read more

AutoHotkey Script – Launch Google

Let’s admit it; we all spend a lot of time googling whether it be for personal reasons, professional reasons or just for fun. So this simple script is probably the most useful one you will ever come across. (It is definitely my favorite, so maybe I am biased). #g::Run www.google.com To know how to create … Read more