Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/01/2007, 19:04
Avatar de roc2107
roc2107
ɹopɐɹǝpoɯ
 
Fecha de Ingreso: febrero-2003
Ubicación: León Guanajuato
Mensajes: 4.834
Antigüedad: 21 años, 2 meses
Puntos: 109
Re: Action para ir a otra escena

on (rollOver) {
CPAnima.onEnterFrame = function() {
if (this._currentframe != 12) {
this.nextFrame();
} else {
this.stop();
delete this["onEnterFrame"];
}
};
}
on (rollOut) {
CPAnima.onEnterFrame = function() {
if (this._currentframe != 1) {
this.prevFrame();
} else {
this.stop();
delete this["onEnterFrame"];
}
};
}
on (press) {
gotoAndStop("Escena 2", 1);
}
__________________
Blog de Diseño Gráfico roc21.com ||

El secreto de la creatividad es saber esconder tus fuentes.