TextLayout xmlText not loading in Firefox

Hi,

I want to dynamically insert text into a TextLayout component.
I read the contents of the XML at runtime and put them into TextLayout.xmlText.

Everything works fine in the standalone Flash Player and in Internet Explorer, but in Firefox the read text is empty. I am not using any backslashes in paths…

Here’s the code that reads the XML:


var urlLoader: URLLoader = new URLLoader();
urlLoader.addEventListener(Event.COMPLETE, done);
urlLoader.load(new URLRequest("content/page1.xml"));

function done(e: Event): void {
    textLayout.xmlText = urlLoader.data.split("
").join("");
    textLayout.verticalScrollPolicy = "auto";
}

Here’s the FLA, HTML, XML’s etc: http://dl.getdropbox.com/u/1927613/tl.rar

Thank you in advance for any kind help or advice.