I’m trying to do a smooth automatic text scroll from right to left.
Heres the code I made up but it’s not as smooth as I’d like it to be:
myTxt_mc.onEnterFrame = function() {
this._x -= 3.5;
if (this._x <= -3360) {
this._x = 341;
}
}
Anyone know how to make it smoother?
Foo :vamp: