Hola xikixio:
El código al escribirlo así, no debe de darte ningún error:
Código actionscript:
Ver originalnormal.onRollOver = function() {
gotoAndStop(2);
};
normal.onRollOut = function() {
gotoAndStop(1);
};
normal.onRelease = function() {
hide_buttons();
};
this._alpha = 0;
onResize();
this.onEnterFrame = function() {
this._alpha = this._alpha+5;
if (this._alpha>=100) {
delete this.onEnterFrame;
}
// end if
};
stop();
Si tu quieres ir al frame 2 de la Línea de tiempo principal al poner el mouse sobre el botón, en ésta parte de código:
this.gotoAndStop(2); elimina el
this, lo mismo en el
onRollOut
Espero haberte sido de ayuda.