Loading .txt files into movie clips

Can any one hook me up with some code will load a .txt file into a movie clip? I need it to be an on frame event but I can’t figure it out.

Also, how do you change the font and color of the text that is loaded from the .txt file?

Thanks…:beam:

loadText = new loadVars();
loadText.load(“news1.txt”);
// creating the loadVarsText function
loadText.onLoad = function() {
scroller.text = this.news1;
};
stop();

if u add that to a dynamic text box it should add text but its for a scroller shud be able to adapt it though

-Tom