Originariamente inviato da negatyve
Associa ad un movieclip:

codice:
onClipEvent (load) {
	this._x = 100;
	this.end = 400;
	frame = 3;
}
onClipEvent (enterFrame) {
	this._x += (this.end - this._x) / frame;
}
Grazie mille negative, ho capito
e ci sono riuscito!!