Associa ad un movieclip:

codice:
onClipEvent (load) {
	this._x = 100;
	this.end = 400;
	frame = 3;
}
onClipEvent (enterFrame) {
	this._x += (this.end - this._x) / frame;
}