Starting and stopping other processes
Familiarize yourself with adding actions to buttons.
You can start and stop other apps - an example is Pretzel for playing background music.
The command to start an app is launch
The command to stop an app is kill
The optional delay parameter is also available for these two commands - it specifies a time (in milliseconds) to wait before running the command.
Windows Examples
Launch music app
launch
app=C:\Users\judas\AppData\Local\Programs\PretzelDesktop\Pretzel.exe
|
Kill music app
kill
app=Pretzel.exe
|
Mac Examples
Launch music app
launch
app=Pretzel
|
Kill music app
kill
app=Pretzel
|
Next: Opening web pages