Thread: [Actionscript 3] loading extern .swf
View Single Post

  #2 (permalink)  
Old 09-07-08, 18:26
xInstinct's Avatar
xInstinct xInstinct is offline
Flasher
 
Join Date: Jun 2008
Location: Texas
Posts: 42
Rep Power: 0
xInstinct is on a distinguished road
Send a message via AIM to xInstinct
Re: loading extern .swf

Hi,
Try and add the loader only once it has completed loading.

Code:
loader.addEventListener(Event.COMPLETE, addToStage);

function addToStage(e:Event)
{
     addChild(loader);
}
Reply With Quote