LocalTime Property



 
The LocalTime property contains the creation time of the logfile message.


Syntax

    [date=] SiteKiosk.Logfile.LastMessages.Item(index).LocalTime
    
Possible Values
    Date value that retrieves the milliseconds since January 1, 1970.

    The property is read only.
Remarks Examples
    The following example shows the creation time of the first message in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Logfile.LastMessages.Item(1).LocalTime);
    </SCRIPT>

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

Back to top