Buongiorno a tutti.
Ho un clip filmato, a sinistra nello stage.
Dovrei spostarlo verso destra (mostrando fotogrammi).
Deve partire piano per poi accelerare...
Mi date una mano?
(non devo usare tween)
Grazie.
Buongiorno a tutti.
Ho un clip filmato, a sinistra nello stage.
Dovrei spostarlo verso destra (mostrando fotogrammi).
Deve partire piano per poi accelerare...
Mi date una mano?
(non devo usare tween)
Grazie.
Prova con una cosa del genere.
Nel primo frame:
Codice PHP:
_root.tuoMC.onEnterFrame = function(){
_root.tuoMC._x=_root.tuoMC._x + _root.tuoMC._x/12;
}
tuoMC è il nome del movieclip.
Aumenta o diminuisci il "12"
Grazie, ho risolto così!
pulsante.onPress=function():Void
{
var speed:Number=0;
stella.onEnterFrame=function():Void
{
this._x+=speed;
speed+=.50;
if(this._x>=760)
this.onEnterFrame=null;
}
}