IsRegistered Property
The IsRegistered property indicates if the SiteRemote plugin is registered.
Syntax
[bool=] SiteKiosk.Plugins("SiteRemote").IsRegistered
|
Possible Values
Boolean value that indicates if SiteRemote is registered.
|
The property is read only.
Remarks
Examples
The following example determines if SiteRemote is registered and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Plugins("SiteRemote").IsRegistered);
</SCRIPT>
|
Applies to
SiteKiosk v7.0 (and later versions).
Back to top