Ver Mensaje Individual
  #3 (permalink)  
Antiguo 31/08/2004, 16:28
Avatar de ¬...
¬...
 
Fecha de Ingreso: noviembre-2003
Ubicación: Guatemala
Mensajes: 742
Antigüedad: 20 años, 5 meses
Puntos: 4
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);
}
__________________
'_'

...