Yep, now that's more like it. Cool beans Spike. -Douglass
--- In [email protected], Spike <[EMAIL PROTECTED]> wrote: > Surely you can just output the content of the in either a mx:Text or > mx:TextArea. > > If it's coming back as an ActionScript XML object you can use > objName.toString() to convert it to plain text. > > something like this: > > <?xml version="1.0" encoding="utf-8"?> > <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" > creationComplete="showXML();"> > <mx:Script> > <![CDATA[ > function showXML():Void { > var foo:XML = new XML("<state name=\"California\"><city>San > Francisco</city></state>"); > debugOutput.text = foo; > } > ]]> > </mx:Script> > <mx:TextArea id="debugOutput"/> > </mx:Application> > > In your case you should just need to change the code that generates the > var foo. > > HTH > > Spike >

