launch.application

Syntax launch.application (path)

Params path is a file path name pointing to the application you wish to launch.

Action Launches the application named in path.

Returns True if the launch is successful, false otherwise.

Examples launch.application ("System:System Folder:TeachText")

   » true

Notes If you wish to launch an application and open a specific document, use launch.appWithDocument, or use launch.anything and supply the document name as the path.

This verb works faster than launch.anything; you should use this verb when you know that the object you wish to launch is an application rather than a document, Control Panel or other object.

Unlike launch.anything, the newly launched application is not activated; Frontier remains the foreground application. To bring the other application to the foreground, use sys.bringAppToFront.

If the application does not do any background operations, it may not appear in the Application menu until it is brought to the front.

If the application is already running, this verb returns true immediately.

See Also launch.appWithDocument

launch.anything

sys.bringAppToFront

Discuss