Start Method
The Start method starts the download.
Syntax
SiteKiosk.Network.Downloads.Item(index).Start()
|
Return Value
Remarks
Examples
The following example creates a new download and starts it.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
obj = SiteKiosk.Network.Downloads.CreateDownload("ChooseURL", 0);
obj.Start();
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top