OnUserInfoChanged Event
Fires when the user information changed.
Syntax
SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
Chat.OnUserInfoChanged = handler
|
Parameters
user |
ChatUser object that represents the user. |
Remarks
The object that caused the event can be referenced in the event function using "this".
Examples
The following example displays an alert window when the user information changed.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteCafe = SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient");
SiteCafe.Chat.OnUserInfoChanged = OnUserInfoChanged;
function OnUserInfoChanged(user)
{
alert("User: " + user.Nickname);
}
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top