crescenzo

in teoria si essendo a 0 e < di 300, ma ti posso giurare che a me si muove
:master: :master: :master:
hai provato cosi'?
codice:
function Muovi_Normale(clip){
pos_ini=this[clip]._y;
trace(pos_ini)
    this[clip].onEnterFrame=function(){
          if(this._y <= 300){
                 this._y+= 1 // più alto è il valore + è veloce
          }else{
                 this._y=pos_ini
				// delete this.onEnterFrame
          }
    }
}
Muovi_Normale("MioClip");