Status Property



 
The Status property contains the current status of the download.


Syntax

    [long=] SiteKiosk.Network.Downloads.Item(index).Status
Possible Values
    Long value that retrieves the status.

    The property is read only.
Remarks
    Possible status values:

    0 = not yet started
    1 = running
    2 = paused
    3 = finished
    4 = error
    5 = aborted
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