Item Method



 
The Item method returns one item of the collection.


Syntax

    [obj=] SiteKiosk.Plugins.Item(index)
Parameters
    index Long value that contains the item number to return.
Return Value
    Returns the specified object.
Remarks
    Collection-index values are 1-based.
Examples
    The following example shows the CurrentBalance property of the SiteCash object in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Plugins.Item(2).CurrentBalance);
    </SCRIPT>
    

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top