ChatUser Object



 
The ChatUser object represents a chat user.


Members Table

    The following table lists the members provided by the ChatUser object.

    Members

    Properties Description
    Nickname Nickname of the user.
    SessionIndex Session index.
    UserIndex User index.

Remarks Examples
    The following example displays the nickname of the first chat user.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    user = SiteCafe.Server.Chat.GetUser(1);
    alert(user.Nickname);
    </SCRIPT>
    

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

Back to top