Hello This is my xml:
<foo xmlns="http://www.test.com/"> <a>test</a> <c> <b>test2</b> </c> </foo> I created a namespace object: var ns : Namespace = xml.namespace(); To trace out the content from "a" I used for example: trace(xml.ns::a); This works fine. But now I want check with the "hasOwnProperty()" method whether my xml has a specific property. But I am not able to use the hasOwnProperty() method correctly in combination with my namespace instance. Anyone has an idea? Thank you

