hola Dandy Yankee, bienvenido al foro:
crea una funcion en un fotograma algo asi:
Código:
function cargarSwf(miSwf:String){
var mcVacio:MovieClip = this.createEmptyMovieClip("vacio", this.getNextHighestDepth());
mcVacio.loadMovie(miSwf,"");
}
en las funciones de los botones de tipo movie clip algo asi:
Código:
on(release){
_root.cargarSwf("tuSwf.swf");
}
o desde algun fotograma funciona asi:
Código:
tuBoton.onRelease = function(){
_root.cargarSwf("tuSwf.swf");
}
espero que te sea de mucha ayuda.
Saludos
...