Typewriter right to left by Xeef. Help please

Hi,
I got a code written by Xeef sometimes ago for typwriter effect from right to left. It works for single lines. Dose anybody seen or know about such code for multiline typewriter effect? The problem is how line breaks and goes to the line under.
One can manage with multiple dynamic text boxes, but I chose to ask about a smarter way.
The code:
[AS]
txt = “Hallo this is a Test”;
a = txt.length;
function type() {
qq = " ";
for (b=0; b<a+1; b++) {
qq += " ";
}
abc = qq+txt.substr(a, txt.length-a);
a–;
if (a == 0) {
a = txt.length;
}
};
setInterval(type,100)
[/AS]

Thanks :slight_smile:


Regards,
mx-guest2004