Ver Mensaje Individual
  #3 (permalink)  
Antiguo 22/09/2005, 11:44
Avatar de TMeister
TMeister
Crazy Coder
 
Fecha de Ingreso: enero-2002
Ubicación: En la Oficina
Mensajes: 2.880
Antigüedad: 22 años, 3 meses
Puntos: 193
Yo haria algo asi..

Código:
var so:SharedObject = SharedObject.getLocal("menuFrame");
function setMenu() {
	gotoAndStop(so.data.frame);
}
uno_btn.onRelease = function() {
	so.data.frame = "1";
	so.flush();
};
dos_btn.onRelease = function() {
	so.data.frame = "2";
	so.flush();
};
setMenu();
Solo agrega

Código:
so.data.frame = "2";
so.flush();
Segun tu menu.