Start Method



 
The Start method starts a choosen script.


Syntax

    SiteKiosk.Plugins("SiteCash").Script.Start(filename)
    
Parameters
    filename String that specifies the absolute script filename.
Return Value
    None.
Remarks
    A running script will be terminated when a new one is started.
Examples
    The following example starts a SiteCash script.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKiosk.Plugins("SiteCash").Script.Start("c:/file.js");
    </SCRIPT>
    

Applies to
    SiteKiosk v6.0 (and later versions).

Back to top