How to animate letter for letter of a text? for Blender 2.55 ..

Up to now, I have only an (stupid?) idea:
Example:
frame what one sees
1 P
11 PE
21 PET
31 PETE

etc.
for each part an object (P, PE, PET, PETE ,…) and two materials: one for visible objects one for invisible object (alpha = 0).
Use a python driver to change the material at given frame numbers.
(Though I am not able to realize this yet, because I miss an easy example of creating, manipulating a driver and connect it with a suitable script :frowning: )

Any idea (and realization help) is welcome :slight_smile:

maybe something like this:

http://img149.imageshack.us/img149/2017/text1j.gif

with blender-2.55
text-object
with material and a moving texture with alpha-channel.
The texture lets the material change its alpha-value
and make the letters visible.
Its only possible with mono-spaced fonts or you have to adjust
the moving of the texture (by object, normaly an empty) by hand.
If its a monospaced text-font like the capital letters one below,
it is possible to setup a “simple” step-function for the moving
empty-object …

Ja, Blenderartist war schrecklich langsam in den lezten Tagen (<== because oother forum info!)

Thanks for the info … I will try!

PKHG: I put together a python solution here:
http://blenderartists.org/forum/showthread.php?t=203982

You can alter the text the font object is displaying on a per frame basis. If you like…

Very, very nice! Thanks a lot Atom!