Muchísimas gracias... salió así:
Código:
_root.consola.nosotros_btn.onRelease = function() {
_root.consola.onEnterFrame = function() {
if (this._x > 165) {
this._x -= 20;
} else {
delete this.onEnterFrame;
}
};
};
¿Para que se desplace a la derecha cómo se hace? intenté cambiar
Código:
if (this._x > 165) {
this._x -= 20;
por
Código:
if (this._x > -165) {
this._x += 20;
y sí se desplaza a la derecha, pero no se detiene ni cambiando el número en
.