Open GoogleCodeExporter opened 8 years ago
Update - if I do the call without actually sending the file it works, so
without the addFile line, it works
var ml:MultipartURLLoader = new MultipartURLLoader();
ml.addEventListener(Event.COMPLETE, complete);
ml.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
ml.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
ml.addEventListener(Event.OPEN, openHandler);
ml.addEventListener(ProgressEvent.PROGRESS, progressHandler);
ml.addEventListener(HTTPStatusEvent.HTTP_STATUS, httpStatusHandler);
ml.addFile(sba, new Date().time+'.mp3', 'audio_file');
ml.load(url);
Original comment by aims.lon...@gmail.com
on 16 Apr 2012 at 11:51
Watching the header requests being made, it's never even sent. Which would
account for why I never get anything from the event listeners.
Original comment by aims.lon...@gmail.com
on 16 Apr 2012 at 12:49
Ok, I solved it, it has to be on https! Why is this not mentioned anywhere?!!
Original comment by aims.lon...@gmail.com
on 16 Apr 2012 at 4:42
Original issue reported on code.google.com by
aims.lon...@gmail.com
on 16 Apr 2012 at 11:28