Online Property



 
The Online property indicates whether the computer is currently online.


Syntax

    [bool=] Computer.Online
    
Possible Values
    Boolean value that retrieves the status.

    The property is read only.
Remarks
    None.
Examples
    The following example determines whether the first computer is online and display it.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    computer = SiteCafe.Server.Computers.GetComputerByIndex(1);
    alert(computer.Online);
    </SCRIPT>
    

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

Back to top