Simple help needed please

Hi all,
I have a flash movie and Iam trying to import data using .txt files via XML.The problem is that the Flash movie is displaying only 42 lines of contents from my text file.

Say for example,my text file has 100 single lines of text, then when I play the movie in the IE browser,only 42 lines are being displayed.The rest of the other lines are being cut out. The following is the actionscript code for the same:

function showInfoBubble(src:String){
_root.infoBubbleMC.txt = “Loading data…”;
var xml = new XML();
xml.ignoreWhite = true;
xml.onLoad = function(){
_root.infoBubbleMC.txt = this.firstChild.nodeValue;
if(_root.infoBubbleMC.txtArea.maxscroll > 7){
_root.infoBubbleMC.scrollSystem.scrollBar._height = 125*7/(_root.infoBubbleMC.txtArea.maxscroll);
}
else{
_root.infoBubbleMC.scrollSystem.scrollBar._height = 125;
}
_root.infoBubbleMC.scrollSystem.scrollBar._y = 15.3;
_root.infoBubbleMC.txtArea.scroll = 0;
}
xml.load(src);
_root.infoBubbleMC._visible = true;
}

function hideInfoBubble(){
_root.infoBubbleMC._visible = false;
}

hideInfoBubble();

“infoBubbleMC” is the reference name of the text box which displays content from the txt file.

This is what is in the XML file for one of the text files: <![CDATA[aboutnn]]>

I just found that I had to insert lots of empty space between the last line of the text that I put in and the ending parentheses.Meaning this way:

<![CDATA[aboutnn
Some content
Some content
Some content
Some content
Some content
^
|
|
Lots of space here between the text and the ending parentheses.
|
|
v

]]>

I will highly appreciate it if someone can provide me with an early solution.Thank you.