switchApp([appName])

Intended for usage with Sublime Text’s “Run In Indesign” workflow, if one wants to return immediately after the script is done, ie. debug value. Since it uses AppleScript, it’s currently MacOS only.

Type: function

Parameter(s):

  • appName {String} Optional:

    name of application to switch to.

Example(s):

Switch back to Sublime Text, wait 1 second, print random value

switchApp();
delay(1000);
println(random(9999));

Switch to Safari

switchApp("Safari");