Cannot display whole .txt file with loadVars();

Hi everybody!

I used following Action script, but the attached here does not show completely in the dynamic text box. (only about 26 lines) Do you think you could help?

loadVarsText = new loadVars();
loadVarsText.load(“txt/redWine.txt”);

//assign a function which fires when the data is loaded:
loadVarsText.onLoad = function(success) {
if (success) {
//Now that we know the data is loaded,
//set the text content of the Text Field
//with the instance name “scroller” equal to the
//contents of the variable
scroller.html = true;
scroller.htmlText = this.var1;
//scroller.text = this.var1;

} else {
	trace("not loaded");
}
stop();

};
text file