XML Calendar Menu Thread 2

I had asked about these problems in another thread, but that one got confused with other questions. I am now posting my final problem with this code in this thread.

I have an XML code that looks like:

<slideshow>

<photo url=“mypic1.jpg” caption=“My text here.” />
<photo url=“mypic2.jpg” caption=“My text here2.” />

</slideshow>

I have the actionscript code to load the xml and interact with it with flash buttons:

var calendar:XML = new XML();
calendar.ignoreWhite = true;

var urls:Array = new Array();
var captions:Array = new Array();

calendar.onLoad = function(success) {
if (success) {
var rootNode = this.firstChild;
for (var aNode:XMLNode = rootNode.firstChild; aNode != null; aNode=aNode.nextSibling) {
urls.push(aNode.attributes.url);
captions.push(aNode.attributes.caption);

    }
		holder.loadMovie(urls[0]);
    	caption.text = captions[0];
		
} else {
    trace("XML not loaded");
}

};

   day1.onPress = function() {
        holder.loadMovie(urls[0]);
        caption.text = captions[0];
    };

    day2.onPress = function() {
        holder.loadMovie(urls[1]);
        caption.text = captions[1];
    };

Now, everything works exactly correctly as is. There are no problems with the actionscript code or the xml code… the problem is, they are incompatible TOGETHER with how I need the text to output.

The caption attribute in the xml data will not allow me to add paragraph breaks in my text. This completely ruins my entire site.

I either need a new actionscript code to solve this (and I don’t know actionscript well enough to make my own, I’ve been trying for 5 hours and always get undefined url returns)

or I need to be told how to format the xml caption attribute into paragraph breaks, because I can’t seem to get that to work either.

Thank you very much for reading, and hopefully someone will put this all together for me, and if I’m really lucky, will explain why the code I currently have is not allowing me to make paragraph breaks.