Lo que hice fue, en cada mc que quería se desplegara al oprimir cierto botón, poner este código:
Código:
function cierra() {
retrocede();
}
function avanza() {
this.onEnterFrame = function() {
this.nextFrame();
if (this._currentframe == 25)
this.onEnterFrame = null;
};
}
function retrocede() {
this.onEnterFrame = function() {
this.prevFrame();
if (this._currentframe == 1)
this.onEnterFrame = null;
};
}
stop();
Luego en cada botón, por ejemplo en el de "centros comerciales", puse:
Código:
on (release) {
_root.quienessomos.cierra();
_root.centroscomerciales.avanza();
_root.nuevosproyectos.cierra();
_root.contacto.cierra();
}
Y listo.