My note on how to use plupload:
1. Create instance with configuration
2. Bind ‘Init’ Event for anything that want to do be done after plupload initialed.
3. call init()
4. Bind ‘FilesAdded’ Event to start action after select files for uploading (Example: add file to your upload list, or start uploading right away by call start())
5. Can call start() to start uploading files (Optional(I guess):call refresh() if need Reposition Flash/Silverlight)
6. Bind ‘UploadProgress’ Event when uploading (example: add some animation showing progress bar)
7. Bind ‘Error’ for handling failing uploading
8. Bind ‘FileUploaded’ for handling after the files have been uploaded. (example: show the uploaded picture url on the screen)
Just my note for steps how to use plupload (so I can use it on WordPress for uploading media files)