I am stuck. I use uploadify to upload multiple files to my s3 server. I would like to put each file in a folder with a unique identifier . What I was hoping to do was use this syntax to accomplish this (note that uuid is a jquery plugin for generating uuids):
'onComplete' : function(event,queueId,fileObj,response) {
$('#fileInput').uploadifySettings('folder',$.uuid())
}
My problem is that when this callback is called - I no longer have access to $('#fileInput').uploadifySettings(x,y), I realized that this is an undefined method ?!
Other note settings:
'auto': 'true'
'multi': 'true'
and I boot directly to Amazon s3
Has anyone come across this? Ideas on how to solve?
Thank!
source
share