Core Docs | Additional Modules Docs
@Description: Additional data objectw hich is url encoded into post data and sent with the files
@File: uploadButton.js
@Description: Determines if file upload debug info is traced to the flash debug player
@File: uploadButton.js
@Description: The maximum file size per file that the user can upload before it throws an error and fires onMaxFileSizeExceeded
@File: uploadButton.js
@Description: The maximum number of files the user can select in the browser before it throws an error and fires onMaxFilesExceeded
@File: uploadButton.js
@Description: Fires when all uploads for this upload instance are complete
@File: uploadButton.js
@Param: object files.total
@Description: Fires each time one more file is uploaded until the que is empty
@File: uploadButton.js
@Param: object files.total, files.remaining
@Description: Fires once when the upload que is canceled using upload.cancel();
@File: uploadButton.js
@Description: Fires when the user hits cancel in the file browser
@File: uploadButton.js
@Description: Fires when one file in the que is canceled by filename with upload.cancel(file.name); or once per file when upload.cancel()l is fired without a name specified
@File: uploadButton.js
@Param: object file.name
@Description: Fires when a file is done uploading, must beturn something from the serer for this to fire, can be a simple space
@File: uploadButton.js
@Param: object file.name, file.size, file.sizeK, file.type
@Description: Fires if the upload is canceled due to an error
@File: uploadButton.js
@Param: object file.name, file.size, file.sizeK, file.type, file.error
@Description: Fires when a file exceeds the maximum file size specified and is therefore not uplaoded
@File: uploadButton.js
@Param: object file file.name, file.size, file.sizeK, file.exceededBy, file.limit, file.message
@Description: Fires when a user selects too many files
@File: uploadButton.js
@Param: object files.chosen, files.limit, files.message
@Description: Fires when the file is opened for upload on the client's computer
@File: uploadButton.js
@Param: object file.name, file.size, file.sizeK, file.type
@Description: Fires periodically as a file uploads alerting you of the progress in percent, deosn't seem to fire for really quick uploads on local server, must return something from the serer for this to fire, can be a simple space
@File: uploadButton.js
@Param: object file.name, file.size, file.sizeK, file.type, file.bytesLoaded, file.bytesTotal, file.percent
@Description: Fires when the data is returned from the server, , must beturn something from the serer for this to fire, can be a simple space
@File: uploadButton.js
@Param: object file.name, file.size, file.sizeK, file.type, file.data
@Description: Sets the MXML CSS styles for the button
@File: uploadButton.js
@Param: styles Object Hash of css properties
@Example:this.setStyles(
letterSpacing : '20'
);
@Description: Cancels all file uploads for this instance
@File: uploadButton.js
@Description: Fires when the user presses the browse button, but before the file browser opens
@File: uploadButton.js
@Return: boolean true opens file browser, false cancels file browser opening. It does not fire oncancel, you can call it directly before issuing false return if you would like
@Description: Fires when the user selects files from the browse box that pops up from pressing the button
@File: uploadButton.js
@Param: array names the file names selected
@Return: boolean true uploads, false cancels upload before it starts. It does not fire oncancel, you can call it directly before issuing false return if you would like