Text=Error #2036: Load Never Completed on IE 7 issue

Hi,

It’s my first post here so hello everybody.

I’ve got main.swf witch is preloading another child.swf. It’s little bit complecated, because I need to load child.swf from path relative to baseUrl passed to main.swf by flashvars. It works on IDE, FF3.5, safari, IE 8. Unfortunately it gives me " IOErrorEvent:. text=Error #2036: Load Never Completed" when running from IE 7 :frowning: I’ve got no idea what to do about this. Heres how I load this child:

_loader = new Loader();
_loader.addEventListener(IOErrorEvent.IO_ERROR, onError);
_loader.addEventListener(IOErrorEvent.VERIFY_ERROR, onVerifyError);
_loader.addEventListener(IOErrorEvent.NETWORK_ERROR, onNetworkError);
_loader.addEventListener(IOErrorEvent.DISK_ERROR, onDiskError);

_loader.load(new URLRequest(SiteManager.baseUrl + "/site.swf"));

Please help me I’m really frustrated about this :confused: How it’s possible that there is unhandled IOErrorEvent? Why is this related to browser?

Thanks for any help.