Run Method
The Run method runs a configured external application.
Syntax
SiteKiosk.ExternalApps.Run(path, bool)
|
Parameters
path |
String that specifies the path to the application. |
bool |
Boolean value that specifies if SiteKiosk is to check first if this application is already running. If it is already running, it will be maximized and focused. |
Return Value
Remarks
Examples
The following example runs an external application.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.ExternalApps.Run("c:/windows/notepad.exe", false);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top