Hello there,
I'm using uploadify on a page that allows a user to upload images as well as a category field in which to send those images. Now, I see that uploadify provides a "scriptData" method that allows me to send over key value pairs to the uploadify.php script. But the problem is that the scriptData method grabs its values upon page load(uploadify initialization). Thus when a user is on the page changing values, scriptData still only has the default values that were there on page load.
Is there anyway around this?
Thanks a million!
Possible solution: I was reading the manual further and discovered that you can change the settings through a function call. Possibly on the right track?
$('#fileInput').uploadifySettings('scriptData', getKeyValuePairs()).uploadifyUpload();
working on it now..