I was doing this tutorial
http://www.kirupa.com/developer/mx/multiple_dynamictext.htm
and i swear i did every thing how it said, and when i click on the button the text doesnt load
here is the AS for the first button
on (release) {
loadText = new loadVars();
loadText.load(“TEXT1.txt”);
loadText.onLoad = function(success) {
if (success) {
// trace(success);
newsBox.html = true;
newsBox.htmlText = this.myNews;
}
};
}
and yes i already made my text1.txt document and its in the same folder as the flash files…