Dynamic text file doesn't display all of the text! HELP!

Hi everyone, I have a flash site that I created for a church, and on the homepage my client wanted to have a section called Announcements, where she could easily update the text from that section. To accomplish this, I went to the Kirupa tutorials for dynamic text files in Flash.

I used the XML (or was it PHP) code, pasted it in my Flash movie, opened up Notepad to create my text file, and began inserting paragraphs of text in the Notepad. I attached a scrollbar to the dynamic text file since I wanted to see all of the paragraphs. Scrolled down to the bottom, and then quite surprisingly the rest of the paragraphs were cut off!

The website I’m working on is www.jonesumc.org, and the Announcements section and scrollbar are on the bottom left side of the homepage. The paragraph cut off was originally supposed to say:

FINANCIAL LITERACY BOOT CAMP The Financial Literacy Boot Camp for ages 5 - 18 will be held July 10th - 14th here at Jones. Applications are available today! Three levels offered, Elementary, Jr. High & High School. Our mission to “Expose & Empower” our children & youth to positive financial tools. Volunteers are needed for the week. See Hilary Byrde for more details.

Instead, the scrollbar and textbox cuts the paragraph to the word “Jr. High”
Does anyone know what the problem is?

This is the code inside Flash that allows the text file to communicate with the dynamic text box:

loadText = new LoadVars();
loadText.load("announcement1.txt");
loadText.onLoad = function() {
 announce1.text = this.announce1;
 };

The dynamic text box has an instance name of announce1, and the Var is labeled: announce1
The dynamic text box doesn’t have any actionscript applied to it. The line type of this box is also Multiline, and the text wraps inside the box.

Inside Notepad, at the very beginning I was told to type “announce1=”
Immediately after the equal sign, I could write any kind of text I wanted to. Instead of hitting the ENTER key I pressed the SPACEBAR key several times until I created a new line of text.

As for the code, that’s it! There wasn’t really anything complicated with the code and putting things together. In order to fully understand my problem I recommend taking a look at kirupa’s tutorial for dynamic text. Thanks for your help!