ChangePassword Method
The ChangePassword method changes the current password.
Syntax
SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
ChangePassword(password)
|
Parameters
password |
String that specifies the new password. |
Return Value
Remarks
Examples
The following example changes the current password.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteCafe = SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient");
SiteCafe.ChangePassword("NewPassword");
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top