If I want to load dynamic text without having to press a button. I want it to load in the first frame of my movie automatically when it loads. What should I do?
What I have so far on a button is :
on (press) {
loadText = new loadVars();
loadText.load(“home.txt”);
loadText.onLoad = function() {
loadedText.html = true;
loadedText.htmlText = this.hometext;
};
}