XDXD en teoría no debería dar error pero supongo que es por la carga de los swf prueba así
Código PHP:
var movieExterno = new Loader();
movieExterno.contentLoaderInfo.addEventListener(Event.COMPLETE,cargaCompleta);
movieExterno.load(new URLRequest("presentacion.swf"));
aviador_btn.addEventListener(MouseEvent.CLICK,cargaDespegue);
var tempMovieExterno:*;
function cargaCompleta(event:Event):void {
if (contenedor.contains(tempMovieExterno)) {
contenedor.removeChild(tempMovieExterno);
}
tempMovieExterno=event.target.content;
if (tempMovieExterno) {
contenedor.addChild(tempMovieExterno);
}
}
function cargaDespegue(MouseEvent):void {
movieExterno = new Loader();
movieExterno.load(new URLRequest("despegue12.swf"));
movieExterno.contentLoaderInfo.addEventListener(Event.COMPLETE,cargaCompleta);
}
home_btn9.addEventListener(MouseEvent.CLICK,volverHome9);
function volverHome9(MouseEvent):void {
if (contenedor.contains(tempMovieExterno)) {
contenedor.removeChild(tempMovieExterno);
}
gotoAndStop("inicio");
}