Can anyone help me ... this is driving me crazy. I've searched through several pages on the forum for how to use the LoadVars to import a text file and I can't seem to get my function to work. I don't know what I'm doing wrong. I have a text file (welcome.txt) that simply reads: My name is talytech. On frame 2 of my KoolMoves movie I have a dynamic text box named welcome and the variable name is welcome. I put the following AS code on frame 2:

Code:
content=new LoadVars();

content.onData=function(welcome){
 this.welcome.setContent(0,welcome,1,2);
}

content.load("welcome.txt");
that code returns the following in my dynamic text box: _level0.welcome

I can't figure it out. Why won't it display what's in my text file? Please somebody help me ... I'm running out of time.