Stop Method



 
The Stop method stops the SiteCash script.


Syntax

    SiteKiosk.Plugins("SiteCash").Script.Stop()
    
Return Value
    None.
Remarks
    None.
Examples
    The following example starts and stops a SiteCash script.

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

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

Back to top