Reputation: 835
in Flash using as3 how can i filter an xml by node suppose that the xml has group node like below and i want the items where group=category1
group>category1 /group
Upvotes: 0
Views: 287
Reputation: 336
var filteredXml:XMLList = myXml.(group == "category1");
trace(filteredXml);
Upvotes: 1