file_queue_error_handler not firing with queue limit exceeded

There seems to be an issue with the file_queue_error_handler not firing on the new samples. I downloaded the new demos and tested with no changes and everything worked fine. as soon as i changed the file upload limit it will just die when i try and queue to many files. the file_queue_error_handler dosent recieve anything when the queue limit is exceeded

with only changing the file_queue_limit to 3 and adding a couple of alerts the the fileQueueError function and trying to select more that 3 files I get no alerts in IE, or FF any ideas why?

function fileQueueError(file, errorCode, message) {
alert(errorCode);
try {
if (errorCode === SWFUpload.QUEUE_ERROR.QUEUE_LIMIT_EXCEEDED) {
alert("You have attempted to queue too many files.\n" + (message === 0 ? "You have reached the upload limit." : "You may select " + (message > 1 ? "up to " + message + " files." : "one file.")));
return;
}.....

gyphie's picture

Bug

A bug has reported (fixed in the SVN trunk). The file Queue Error for queue limit exceeded won't fire in the current beta.

The other queue errors should fire.

You can view the latest trunk here

Fixed

Thanks, that did the trick...

Where did the trunk go?

I'm having this same issue, but the link to the trunk version of this file 404s.

Does anyone know the fix? Or maybe where the file can be downloaded from SVN?

gyphie's picture

Latest

You just just use the latest SWFUpload version.

The Google Code link is http://code.google.com/p/swfupload/source/browse/#svn/swfupload/