Nickname Property
The Nickname property contains the current nickname.
Syntax
SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
Chat.Nickname [=str]
|
Possible Values
String that specifies or retrieves the nickname.
|
The property is read/write.
Remarks
Examples
The following example displays the current nickname.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteCafe = SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient");
alert(SiteCafe.Chat.Nickname);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top