he probado con unloadMovie y tampoco desaparece al salir el objeto.
Código PHP:
stop();
objeto.onEnterFrame = function() {
this._x += this.speed;
//si sale de la pantalla
if (this._x>Stage.width) {
this.removeMovieClip();
}
}
var vel:Number = 0;
boton.onPress = function() {
vel += 1;
objeto.speed = vel;
}
gracias