
22/09/2005, 11:44
|
 | Crazy Coder | | Fecha de Ingreso: enero-2002 Ubicación: En la Oficina
Mensajes: 2.880
Antigüedad: 23 años, 2 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. |