GetUser Method
The GetUser method returns a chat user.
Syntax
[obj=] SiteCafe.Server.Chat.GetUser(index)
|
Parameters
index |
Long value that specifies the user index. |
Return Value
Returns a ChatUser object representing the specified user.
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