codice:
istanza_bbottone.onPress = function() {
	istanza_movie._x = 640;
	istanza_movie.onEnterFrame = function() {
		if( this._x > 50 ) {
			this._x--;
		}
		else {
			delete this.onEnterFrame;
			this._x = 50;
		}
	}
}