I can't find any proper way to make a long textField move fluently horizontally across the screen in full screen mode. I tried many ways but it always gets stuck from time to time for a few milliseconds and ruins the whole experience. Please, if someone can help me to find a way to best animate a large dynamic string on full screen, I would be very grateful. I tried using var myTween:Tween = new Tween(myText, "x", None.easeNone, 0, newX, 80, true); even moving the x manually using a timer or on frame event; it always gets stuck for a few milliseconds pretty often when the text moves across the screen in full screen. I also tried using Bitmap but it gets a bit too pixelated and no noticeable improvement in performance. Maybe someone knows a way to optimize the animation somehow in ActionScript 3 or use some other controler than a textField.
Thank you for your help.