Hi all
I have an xml structure which is like this
<map>
<clip>hkjkj</clip>
<clip>hh
<document> hxsjka</document>
</clip>
<clip>
<document>kkkkkkk</document>
</clip>
</map>
And I want to delete the document nodes in one swoop ..
var p:XMLList = _mapDataProfile.clip..document
delete _mapDataProfile.clip..document
var s:XMLList=_mapDataProfile.clip..document
but p and s are the same - what am I missing here?
Thanks !
Matt

