Item Method



 
The Item method returns one item of the collection.


Syntax

    [str=] SiteKiosk.Plugins("SiteCash").SessionSettings.AllowedURLs.Item(i)
    
Parameters
    i Long value that contains the item number to return.
Return Value
    Returns a String containing the URL.
Remarks
    Collection-index values are 1-based.
Examples
    The following example returns the first allowed URL.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    sitecash = SiteKiosk.Plugins("SiteCash");
    alert(sitecash.SessionSettings.AllowedURLs.Item(1));
    </SCRIPT>
    

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

Back to top