Hello all! I need help in incorporating CSS with my Dynamic text loaded from a txt file. I am calling the file with the code below, which I think I got from a tutorial on Kirupa!
var myLoadVars:LoadVars=new LoadVars;
myLoadVars.load("Text/NewsText.txt");
myLoadVars.onLoad = function (success:Boolean){
if(success){
home_copy.home.text=this.homeText;
}
}
I would much appreciate any help!