en el frame donde tenes:
Código:
this.nomina_boton1.onRollOver =function(){
gotoAndStop("f_boton1");
}
tenes que tener tambien el evento rollOut, tonces te queda asi:
Código:
this.nomina_boton1.onRollOver =function(){
gotoAndStop("f_boton1");
}
this.nomina_boton1.onRollOut=function(){
gotoAndStop(1);
}
fijate bien que el boton sea el mismo en el frame "f_boton1", es decir, que le diste F5 hasta ese frame o si lo quitaste hasta llegar a ese frame, tonces pegale las mismas acciones y dejale el mismo nombre de instancia al boton en el frame "f_boton1" :
Código:
this.nomina_boton1.onRollOver =function(){
gotoAndStop("f_boton1");
}
this.nomina_boton1.onRollOut=function(){
gotoAndStop(1);
}