Start
| Description: | Starts an application |
| Returns: | Nothing |
Usage: ![]() |
Script only. |
| Function Groups: | Configuration Management |
| Related to: | GetLoadedAppInstance | AppIsRunning | AppIsStarted | AppIsStarting | |
Format: ![]() |
Layer.Start() |
| Parameters: | none. |
| Comments: |
To use, gather the "Layer Root" of an object from the \System.GetLoadedAppInstance function. Has no effect if the application is already running. |
Examples:
The following snippet will start the legacy Completed Tutorial application.
[
TutGUID = "db53f244-90ef-4628-bdf6-2d53794a2079";
]
Main [
If WinButton(232, 148, 412, 100, 0, "Start app", 1);
[
LayerToStart = \System.GetLoadedAppInstance(tutGUID);
LayerToStart.Start();
]
]
