If you have a XML that contains multiple names but you don't care about the namespaces when getting values from the XML you can do the following....
Example XML
<ns1:Item>
<ns1:ItemType>Printed Material</ns1:ItemType>
<ns2:Book isbn="123456">
<ns2:Author>
<ns2:FirstName>James</ns2:FirstName>
<ns2:LastName>Smith</ns2:LastName>
</ns2:Author>
<ns2:Title>The Book Title</ns2:Title>
</ns2:Book>
<ns1:Item>
You could get any item regardless of namespace like this
var itemType:String = xml.*::ItemType;
var bookISBN:Number = xml.*::Book.@isbn;
var bookTitle:String = xml.*::Book.Title;
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…