Okay so I want to create text to appear letter by letter in a text box. I have the following code:
typeText = "TEXT GOES HERE";
typeInterval = setInterval(typeThis, 70, typeText);
counter = 0;
function typeThis(thisString) {
preloading_txt.text += thisString.charAt(counter);
counter++;
//if...