hola buenas, no consigo que se incremente la variable de velocidad de un objeto al pulsar el respectivo boton. se queda en el valor del primer incremento (2).
el codigo es :
Código PHP:
stop();
objeto.onEnterFrame = function() {
this._x += this.speed;
//si sale de la pantalla
if (this._x>Stage.width) {
this.removeMovieClip();
}
}
boton.onPress = function() {
var vel:Number = 1;
vel += vel;
objeto.speed = vel;
_root.salida = vel;
}
gracias y saludos