Item Method



 
The Item method returns one item of the collection.


Syntax

    [obj=] SiteKiosk.Network.Downloads.Item(index)
    
Parameters
    index Long value that contains the item number to return.
Return Value
    Returns a Download object that contains information about the respective download.
Remarks
    Collection-index values are 1-based.
Examples
    The following example shows the status of the first download.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Network.Downloads.Item(1).Status);
    </SCRIPT>
    

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

Back to top