codice:
onClipEvent (load) {
 torna=false;
}
onClipEvent (enterFrame) {
 if(torna==false){
  _x-= (_x-300)/9;
 }
 if(_x > 290){
  torna=true;
 }
 if(torna==true){
  _x-= (_x-150)/9;
 }
}