Lines Matching defs:upload
83 // Track the number of current upload threads
112 logMessage("Simultaneous upload limit has been set to 1");
116 logMessage("Simultaneous upload limit has been set to 5");
120 logMessage("Simultaneous upload limit has been set to " + simUploadLimit);
166 logMessage("Multiple file upload has been turned " + (allowMultiple ? "on." : "off."));
278 * Clears the set of files that had been selected for upload
303 * @param fieldName The field name that precedes the file data in the upload POST operation.
316 public function upload(fileID:String, url:String, method:String = "GET", vars:Object = null, fieldName:String = "Filedata"):void {
333 fr.upload(request,fieldName);
335 logMessage("Starting the upload of file " + fileID);
345 * @param fieldName The field name that precedes the file data in the upload POST operation. The uploadDataFieldName value must be non-null and a non-empty String.
373 * @param fieldName The field name that precedes the file data in the upload POST operation. The uploadDataFieldName value must be non-null and a non-empty String.
412 * Cancels either an upload of the file corresponding to a given fileID, or in the absence of the specified fileID, all active files being uploaded.
419 logMessage("Canceling upload of " + fileID?fileID:"all files.");
450 uploadProgress - fires when a file upload reports progress. Passes the file id, as well as bytesUploaded and bytesTotal for the given file.
451 uploadComplete - fires when a file upload is completed successfully and passes the corresponding file id.
452 uploadCompleteData - fires when data is received from the server after upload and passes the corresponding file id and the said data.
770 yuiBridge.addCallbacks ({removeFile:removeFile, clearFileList:clearFileList, upload:upload,uploadThese:uploadThese,uploadAll:uploadAll,cancel:cancel,setAllowLogging:setAllowLogging,setAllowMultipleFiles:setAllowMultipleFiles,setSimUploadLimit:setSimUploadLimit,setFileFilters:setFileFilters,enable:enable, disable:disable});
772 // Removes one or all files from the upload queue
779 // upload(fileID:String, url:String, method:String = "GET", vars:Object = null, fieldName:String = "Filedata")
781 // ExternalInterface.addCallback("upload", upload);
790 // Cancels the specified file upload; or all, if no id is specified
908 * Queues a file for upload
916 * Uploads the next file in the upload queue.
925 logMessage("Starting upload for " + objToUpload.id);
926 fr.upload(request,fieldName);