I need to develop an animation in Flex that simulate someone handwriting a textarea with dynamic content. I don't care about the pen following the actual curves of the font, but I need a clean way to show the text line by line, with a mask that follows the position of the pen.
Something like this, but with a native textarea and my own font:
http://activeden.net/item/handwriting-animation-tool-v25/11733
the textarea in mxml can have only one mask, so I guess I should create my mask programmatically. Has anyone done this yet?
thank you
There are a few different techniques to create true effect - like what is shown on that website. And be aware that it is pretty tedious work. What you can do in Flex is to show the lines of text sequentially revealing the letters with the mask of any shape. Here is simple example:
HTH FTQuest