ercan
ercan

Reputation: 835

Filter XML in as3 by nodes

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

Answers (1)

Jarno
Jarno

Reputation: 336

var filteredXml:XMLList = myXml.(group == "category1");
trace(filteredXml);

Upvotes: 1

Related Questions