Hola sonia1982:
Si es posible.
Código para el botón:
Código actionscript:
Ver originalmiBoton.addEventListener(MouseEvent.CLICK, cargarSWF);
function cargarSWF(event:MouseEvent):void {
function loadSWF(swfURL) {
var miLoader:Loader = new Loader();
var miSWF:URLRequest=new URLRequest(swfURL);
miLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onCompleteHandler);
miLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgressHandler);
miLoader.load(miSWF);
}
function onCompleteHandler(loadEvent:Event) {
addChild(loadEvent.currentTarget.content);
loadEvent.currentTarget.content.gotoAndStop(swfFrame);
}
function onProgressHandler(myProgress:ProgressEvent) {
var percent:Number=Math.round(myProgress.bytesLoaded/myProgress.bytesTotal*100);
trace(percent+"% loaded");
}
var swfFrame:Number=10;// aquí el número del frame donde quieres ir.
loadSWF("nombre.swf");
}
Espero haberte sido de ayuda.