RunningTime Property



 
The RunningTime property contains the duration of the currently active screensaver.


Syntax

    [long=] SiteKiosk.ScreenSaver.RunningTime
Possible Values
    Long value that retrieves the last running time.

    The property is read only.
Remarks
    This property is reset each time SiteKiosk is reactivated. None.
Examples
    The following example shows the last running time in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.ScreenSaver.RunningTime);
    </SCRIPT>
    

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

Back to top