No, your cfc method won't be able to send back multiple returns. Instead, the flash uploader will upload the files one at a time to your CFC but your user will have the experience of sending them all at once. You will be able to customize progress reports as the flash object will publish javascript events notifying progress of each upload.
This is true of both uploadify and swfupload though uploadify looks easier to implement if you are at all familiar with jQuery (and probably even if you are not). Dominic 2009/9/14 Rick Faircloth <[email protected]> > > Is that a "one-image-at-a-time" processor, or will it handle > multiple images submitted at once? > > Multiple images is what I'm trying to accomplish. I usually let > a user select all the images they want to upload before submitting > by letting them clone the file input. > > Then, within the cfc method, I loop over the images and process each one. > > I'm looking for some way to send a message back after each image is > processed. > > Could I use writeOutput(SerializeJSON(result)); multiple times with a > method? > > And is the code that starts with "if(ckMimeTypeObj.status == 0) {" > javascript > or cfscript? I guess it's got to be cfscript with "createObject..." in it? > > Rick > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326295 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

