Name Property
The Name property contains the name of this plugin.
Syntax
[str=] SiteKiosk.Plugins("SiteCam").Name
|
Possible Values
String that retrieves the name.
|
The property is read only.
Remarks
The internal name of the Webcam plugin is "SiteCam".
Examples
The following example shows the name of this plugin in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Plugins.Item(1).Name);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top