Hi, check out the TextAnim library. A class for dynamic text animation in
AS3, that is event based and tween engine independent.

TextAnim works creating blocks of text, then applying functions that you
create to each one of them. We call these functions as effects. These
functions must receives a TextAnimBlock as a parameter to you be free to
make the animation you want.

Here is the most basic *example*:

import flupie.textanim.*;

var myTextAnim:TextAnim = new TextAnim(myTextField);
myTextAnim.effects = myEffect;
myTextAnim.start();

function myEffect(block:TextAnimBlock):void {
    block.alpha = 0;
    tween.to(block, {alpha:1, time:.5});
}

You can download the latest stable version of TextAnim, check out Flupie
blog <http://flupie.net/blog/> to get a few examples with source, read the
documentation <http://flupie.net/textanim/docs/> or get TextAnim code
generator, called TextAnim Maker <http://flupie.net/textanim/maker/>.
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to