Textwrite AS
Textwrite AS
Out of context: Reply #2
- Started
- Last post
- 2 Responses
- pixelman0
got it!
i = 0;
function enGaan(){
if(i< myOldString.length){
trace(myNewArray[i]);
_root.txt = _root.txt + myNewArray[i];
}
i++;
}
myOldString = "Nieuwe springkastelen.";
myNewArray = myOldString.split("");
setInterval(enGaan, 50);