unloadAndStop(true) throwing URL not found error?
I'm using BulkLoader to load a .swf file from a website. The problem I'm having is that occasionally, say 1 out of 50 download attempts, I get the following error message:
Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found.
The .swf does then actually load and display properly, but I'm still concerned by this behaviour.
I've tracked the error down to this function called on a Loader object. The .swf has been downloaded by this point, and is trying to be cleaned up.
loader.unloadAndStop(true);
I can't seem to listen for this IOError event by adding listeners to the loader object. Why would unloadAndStop() be reporting a URL not found ?
