Subtitles with Cuepoints (FLV) - with typewriter effect

Greetings!

I am working on adding subtitles to a flash video. Ive successfully done this using cuepoints and the following dode:


function onCuePoint(cp: Object)
{
   if (cp.info.name == "subtitle") {
     subtitle.text = cp.info.parameters["text"];
  }
}
player.addEventListener("cuePoint", onCuePoint);

However now i want to add an effect so instead of just displaying the subtitle text the movie will actually make it like the typewriter effect. If anyone can help me out with some code or even point me in the right direction on this it would be great.

Thank you!
h.