Hey gang!
Got a piece of code that moves a line of text I’m calling “eeScroller”. I’m using this method because timeline and as tweens make the movement herky jerky (when the movement is slow).
What I want to do is reset the _x of eeScroller to 0.9 once it reaches the _x of -889.3
Here’s what I got so far:
function movething() {
_root.eeScroller.onEnterFrame = function() {
if (_root.eeScroller._x>=-889.3) {
_root.eeScroller._x += -.75;
}
};
}
movething();
And that moves the movie clip… just need the reset script!
I can’t figure out how to implement onMotionFinished if that’s even the way to do it…
Help!
Thanks!