Hi
In my Flex application, I use a FileReferenceList
that the user can populate with multiple files using fileList.browse()
before upload.
I check each file's size and use fileList[i].upload()
to upload to my server, this works fine.
I have a suspicion that this is not possible, but before upload I would like to convert each FileReference
into an Image in order to check it lies within certain dimension tolerances.
I realise I can do this server side, but ideally I would like the check to appear on both client and server. Can anyone offer any help?
Thanks!