It looks like you're new here. If you want to get involved, click one of these buttons!
$('.multiple-file-uploader').uploadify({
uploader: 'theme/scripts/jquery.uploadify-v2.1.1/uploadify.swf',
folder: 'files/uploads',
cancelImg: 'theme/gfx/uploadify-cancel.png',
multi: true,
//wmode: 'transparent',
//hideButton: true,
queueID: 'photos_queue',
fileDesc: 'Image files',
fileExt: '*.jpg;*.jpeg;*.gif;*.png',
displayData: 'speed',
width: '343',
scriptAccess: 'always',
onSelect: function(event,ID,fileObj) {
alert('The file ' + fileObj.name + ' was added to the queue.');
},
onAllComplete: function(event, data) {
$('#message').html('Files uploaded successfully.').fadeIn('slow', function() {
setTimeout('$("#message").fadeOut("slow");', 3000);
});
}