Zones Collection
The Zones collection contains the zones that have been defined in the SiteKiosk configuration.
Members Table
The following table lists the members provided by the Zones collection.
|
Properties |
Description |
Count |
The number of zones. |
|
Methods |
Description |
Item |
Returns one item of the collection. |
|
Remarks
This collection is available through the object SiteCash.
Use the Zones collection to receive information about the existing zones or to modify them.
Note that the path of a file using SiteKiosk objects must be allowed in the
SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
if it is not a browser skin file.
Examples
The following example shows the number of existing zones in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Plugins("SiteCash").Zones.Count);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top