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