Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to resolve Adobe Flex error: "Error #2036: Load Never Completed"?

How to resolve Adobe Flex error: "Error #2036: Load Never Completed"?

like image 401
Roman Kagan Avatar asked Aug 04 '09 14:08

Roman Kagan


3 Answers

Don't forget you can also add an IOErrorEvent-listener to the loaders, so you can trace a bit more information for yourself. The code beneath is a general starter, it'll probably need a bit more information before it actually works in flash/flex.

swfLoaderInstance:SWFLoader = new SWFLoader();
swfLoaderInstance.source = "someSWFFile.swf";
swfLoaderInstance.addEventListener(IOErrorEvent.IO_ERROR, handleError);

public function handleError(event:IOErrorEvent):void{
    trace(event.target);
    //etc...
}
like image 179
Timo Avatar answered Sep 20 '22 01:09

Timo


The problem was with mis-locating the SWF modules. As soon as appropriate location was set for generated SWF modules - the error disappear.

like image 31
Roman Kagan Avatar answered Sep 21 '22 01:09

Roman Kagan


If it's a internet browser thing, and you are using Google Chrome. Go to Histor>Clear all browsing Data. Tick in these thins only, you wouldn't want to lose the browsing data.

Empty the cache, Delete cookies and other site and plug-in data, Clear saved Autofill form data

Clear it from beginning of time. Then try to load the thing you want to. Worked for me fine:)

like image 38
XeX Avatar answered Sep 21 '22 01:09

XeX