urlRequest = new URLRequest(AccordionEffectPanel.EFFECT_DIR + fileName);
//initialize loader
loader = new Loader();
//wire image loading complete
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadEffectCompleted);
loader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
//load image
loader.load(urlRequest);
This is the code piece I am getting error : Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found. However, the code is supposed to handle this error silently since I wire IOErrorEvent
If this is not the appropriate way to handle IOError, how to handle IOErrors?