para el efecto:
Código :
on (rollOver) {
mail.onEnterFrame = function() {
if (this._currentframe != 20) {
this.nextFrame();
} else {
this.stop();
delete this["onEnterFrame"];
}
};
}
on (rollOut) {
mail.onEnterFrame = function() {
if (this._currentframe != 1) {
this.prevFrame();
} else {
this.stop();
delete this["onEnterFrame"];
}
};
}y anexo estoal final y no pasa nada
Código :
on(press){
gotoAndPlay("menu", 1);
trace("hola");
}pero si anexo anexo esto a un boton de flash si lo hace incluso si lo hago asi:
Código :
boton.onRelease = function(){
gotoAndPlay("mail", 1);
}la duda es como puedo indicar como cambiar de escena ya que de ninguna manera lo hace...
por cierto, este ultimo codigo no lo meto en el boton sino en el layer..
