Search code examples
actionscript-3flash-builderflash-cs5flash-cs4

Actionscript 3 - How can i convert from XMLList to XML?


My function is returning XML, so i do:

return xml.blah.blah.blah

It tells me it can't convert XMLList to XML

so i'm guessing xml.blah.blah.blah is a XMLList.

How can i do this (convert XMLList to XML)? the simpliest way possible?


Solution

  • You should be able to just cast the XMLList to XML.
    Either:

    XML(xml.blah.blah)
    

    or

    (xml.blah.blah as XML)