Nickname Property
The Nickname property contains the nickname of the user.
Syntax
Possible Values
String that retrieves the nickname.
|
The property is read only.
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