Código :
//Navegacion entre swfs;
primitivo_btn.addEventListener(MouseEvent.CLICK,primitivoIr);
function primitivoIr(event:MouseEvent):void
{
   var Carga = new Loader();
   Carga.load(new URLRequest("Primitivo.swf"));
   addChild(Carga);
   Carga.x = 0;
   Carga.y = 0;
   
}
historia_btn.addEventListener(MouseEvent.CLICK,historiaIr);
function historiaIr(event:MouseEvent):void
{
   var Carga = new Loader();
   Carga.load(new URLRequest("Historia.swf"));
   addChild(Carga);
   Carga.x = 0;
   Carga.y = 0;
   
}
galeria_btn.addEventListener(MouseEvent.CLICK,clickIr);
function clickIr(event:MouseEvent):void
{
   var Carga = new Loader();
   Carga.load(new URLRequest("Galeria.swf"));
   addChild(Carga);
   Carga.x = 0;
   Carga.y = 0;
   
}
contactenos_btn.addEventListener(MouseEvent.CLICK,contactenosIr);
function contactenosIr(event:MouseEvent):void
{
   var Carga = new Loader();
   Carga.load(new URLRequest("Contactenos.swf"));
   addChild(Carga);
   Carga.x = 0;
   Carga.y = 0;
   
}
Todo bien me cargan los 4 swf externos, Pero ahora como veran se superponen o ensiman
 me parece segun e leido en cristalab que debe ponerse un remove, para remover cada swf,
  me parece segun e leido en cristalab que debe ponerse un remove, para remover cada swf,creo que en AS 2 para que no se superpongan se hacia con profundidad 1,2,3 pero como es en AS 3
Gracia amigos por la ayuda
 
					

 
  
			 
    
  
 