I would use Event.Complete:
Actionscript Code:myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, printLoaded);
function printLoaded(evt:Event):void
{
addChild(web);
}
This way print loads in and then when it is fully loaded you can load in web.




Reply With Quote