Raised to indicate the progress of the download.
<script type="text/javascript" src="iuembed.js"> </script> <script type="text/javascript"> function FileDownloaderID_Progress(PercentTotal, PercentCurrent, Index) { //...your code... } var fd = new FileDownloaderWriter("FileDownloaderID", 610, 500); //...params... //...other event listeners... fd.addEventListener("Progress", "FileDownloaderID_Progress"); //...other event listeners... fd.writeHtml(); </script>
Percentage of the whole download process completion (taking into account all files in the queue).
Percentage of the download process completion for the current file.
The number of the file being currently downloaded.