Hi guys,
I am stuck. I am using uploadify to upload multiple files to my s3 server. I would like to put each file into a folder that has a unique identifier. What I was hoping to do was to use this syntax to accomplish that (note uuid is a jquery plugin to generate uuids):
'onComplete' : function(event,queueId,fileObj,response) {
$('#fileInput').uploadifySettings('folder',$.uuid())
}
My issue is that when this callback gets called -- i not longer have access to $('#fileInput').uploadifySettings(x,y)
i get that it is an undefined method ?!
Other uploadify settings of note:
'auto': 'true'
'multi': 'true'
and I am uploading directly to Amazon s3
Has anyone run into this? Ideas on how to solve?
Thanks!