Ho questo script creato da me, ma sicuramente non giusto perchènon funziona :

onClipEvent (load) {
this._y = 0;
speed= 3;
y= 28;

}
onClipEvent (enterFrame) {
this._y += (y-this._y)/speed;
if(this._y >= 27){
this._y = 28;
this._x = 0;
x=114;
}else{
if(this._x == 0){
this._x += (x-this._x)/speed;

}
}
}

Dovrei in poche parole far muovere il clip prima in verticale e poi in orrizzontale ma cosi non funziona DOVE SBAGLIO!!!????

grazie mille!