In this tutorial we will explain how to make your own progress bars and use them with Pure PHP Upload.
To make your own progress bar, you need to:
You will need the following three functions:
getProgressWindowSize
returns the size of the popup window where the progress bar is displayed. Enter a string with width and height.
Sample:
function getProgressWindowSize() { return "300,100"; }
getProgressWindowTitle
returns the title of the progress bar. To be used in the Pure ASP Upload choice list.
Sample:
function getProgressWindowTitle() { return "Blue Flash Progress Bar"; }
getProgressWindowFiles
returns a comma separated list of all files needed for the upload to work. This includes the current html file.
Sample:
function getProgressWindowFiles() { return "blueFlashProgress.htm,blue_progress.swf"; }
\Dreamweaver MX\Configuration\Shared\DMXzone\Pure PHP Upload\Progress Bars\