Is there a new way that we have to load up text from a text file in Flash 8? We are re-using some older code to simply read a text file and display that text in our movie and it continues to come up undefined.
Any help is appreciated
Any help is appreciated
Code:
var Ext_text:LoadVars = new LoadVars();
Ext_text.onLoad = addText;
Ext_text.load("ourtextfile.txt");
trace(Ext_Text.Text.toString());
function addText() {
movText1.Text1.text = this.Quote;
}