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;
}