Hi Everybody,
I’d made one movie clip in that I’m increasing the Alpha of text from 0% To 100% and I’m using the Pixel Font and I’d attached one jpg file see the difference between JITENDRA and the JITENDRA text written in box. Actually in movie clip the clearity of font is going. Please help me if anyone know the solution of it.
look at the _x and _y positions of the textfield containing the blurry text, they might be something like x:25.4 y:25.9, they need to be x:25 y:25, so the text is crisp. Sometimes when you adjust a property like alpha flash helps you out and moves things a bit, a good solution to blurry text is to Math.floor the x and y positions after you modify the text. ie
textField._alpha += 1;
textField._x = Math.floor(textField._x);
textField._y = Math.floor(textField._y);