questo e' un semplice effetto "macchina da scrivere" in pratica scrive la stringa str, come faccio a fargli scrivere non la stringa ma un file di testo esterno? cosa devo cambiare?
grazie.
questo e' lo script.
str = "hello world!";
num = 0;
id = setInterval(function(obj){
obj.myTextField.text = obj.myTextField.text + obj.str.charAt(obj.num++);
if(obj.num > obj.str) clearInterval(obj.id);
}, 50, this);