onClipEvent(load){
_root.btnhome = this
this.gotoAndPlay ("salida")
this.enabled = false;
}
dentro tiene estas acciones en el frame 1
stop();
this.onRollOver = function() {
gotoAndPlay("sobre");
};
this.onRollOut = function() {
this.onEnterFrame = function() {
if (this._currentframe == 1) {
delete this.onEnterFrame;
} else {
this.prevFrame();
}
};
};
this.onRelease = function() {
eval("_level0.boton_pulsado_"+categoria).enabled=true
eval("_level0.boton_pulsado_"+categoria).gotoAndPlay("salida")
this.gotoAndPlay("pulsado");
this.enabled = false;
_level0["boton_pulsado_"+categoria] = this;
};
this.onReleaseOutside = function() {
this.onRollOut();
};
Lo que no puedo hacer es que al hacer click en el resto de los botones se accione la salida del primer botón y vuelva al estado primario.
Agradecería sus ayudas!