On Sat, Nov 22, 2008 at 04:50:23AM +0000, Chris Pugh <[EMAIL PROTECTED]> wrote:
> Greetings one and all,
>
> I'm having no joy whatsoever with ,
>
> var myXML = new XML();
> // myXML.ignoreWhite=true;
> myXML.load("<relative URL of XML file>");
This works for me, with all flash versions:
var myXML = new XML();
myXML.load("test.xml");
myXML.onLoad = function(success){
trace("xml:"+myXML);
};
Greetings
Matthias
