I am reading an xml file in actionscript.
I need to loop through each node named "entry" as showing in below image :-
Can anyone help me ?
I am trying below code. but it not working :-
var categoryList:XMLList = x.feed.@entry;
for each(var category:XML in categoryList)
{
trace(category.@name);
for each(var item:XML in category.item)
{
trace(" "+item.@name +": "+ item);
}
}
"entry" node also has some inner nodes, I also want to read those nodes.
Thanks