Ver Mensaje Individual
  #5 (permalink)  
Antiguo 03/07/2007, 15:44
EmmanuelOA
 
Fecha de Ingreso: octubre-2005
Mensajes: 207
Antigüedad: 19 años, 1 mes
Puntos: 0
Re: unloadear un mc y cargar otro

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.
__________________
eoran.com