Of the top of my head (not tested) .. in your swf Loader Complete handler you want something like this :
function OnLoaded(e:Event)
{
var ldrInfo:LoaderInfo = e.target as LoaderInfo;
var swfObj: Object = ldrInfo.content;
this.addChild(ldrInfo.content);
swfObj.gotoAndPlay("label");
....
}
Posted about 1 month ago












