How To Access Namespace Elements In MXML Using Actionscript

Posted by Joshua on Stack Overflow See other posts from Stack Overflow or by Joshua
Published on 2010-06-10T23:37:37Z Indexed on 2010/06/10 23:42 UTC
Read the original article Hit count: 344

Filed under:
|
|
|
|

In Actionscript...

If I Have an XML variable that equals this:

var X:XML=XML("<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" xmlns:ns1="Tools.*" minWidth="684" minHeight="484" creationComplete="Init();" xmlns:ns3="Components.*" initialize="I()"/>");

And I try to list the attributes via:

var AList:XMList=X.attributes();

The three namespaces, "xmlns:mx","xmlns:ns1", and "xmlns:ns3" aren't listed among the attributes! How can I access this information programmatically?

© Stack Overflow or respective owner

Related posts about Xml

Related posts about flex