Dynamic Text Adding Extra Information

For some reason, the data that is getting loaded into the text box is adding:

<TEXTFORMAT LEADING=“0”><P ALIGN=“LEFT”><FONT FACE=“Arial” SIZE=“20” COLOR="#005A80" LETTERSPACING=“0” KERNING=“0”>undefined</FONT></P></TEXTFORMAT>

quite a bit of information. I’m not sure why. You can see it here… For some reason, its only doing it to one of the text boxes…

http://newmediamill.com/preview/vid/flvplayer3.html

The data is being brought in by FlashVars

 <param name="FlashVars" value="flaPath=rtmp://66.135.60.21/carnegie/240308.flv&skinPath=http://newmediamill.com/preview/vid/ClearExternalAll.swf&titleName=Title Of Program&speaker1=Roshan Abel&speaker2=Someone Else&speaker3=Another Person"/>

However, I don’t think it has to do with that, because even when I’m testing, and all the elements are undefined, just this one text box still has all this excess text in it.

The code I am using to fill the boxes is this:

title_txt.text = _level0.titleName;
speaker1_txt.text = _level0.speaker1;
speaker2_txt.text = _level0.speaker2;
speaker3_txt.text = _level0.speaker3;

I already tried coping one of the other text boxes that were working, and changing the instance name to speaker1_txt, but that still doesn’t work. I’m really not sure what to do…