infatti metti ad es sul clip che vuoi far spostare

codice:
onClipEvent (load) { 
this._x=10;
var i = 1; 
} 
onClipEvent (enterFrame) { 
if (i<150 and this._x<=400) { 
this._x = this._x+i; 
//i += (i*0.2); 
i += 10; 
} 
}