Kerry, 
 
Have you tried calling the static function indirectly? 
 
// In the swf you are loading  
public function callInitAssets():void{ 
        trace("\nLoadee:: callInitAssets() called"); 
        initAssets(); 
} 
 
// In the swf you are loading into 
private function handleLoadComplete(e:Event):void{ 
        _assetLib = e.target.loader.contentLoaderInfo.content as MovieClip; 
        trace("_assetLib =",_assetLib); 
        _assetLib.callInitAssets(); 
}
                

Regards,

Keith Reinfeld
Home Page: http://keithreinfeld.home.comcast.net



_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to