Well that's the problem. Creating an RSS reader. One feature is that should parse several "category" nodes from a feed. But when I load a feed, the category doesn't shows up in the text area. Flash returns no errors.
Heres the code -
var curStory = rssXML.channel.item[evt.target.selectedIndex]
var catlist:XMLList = curStory.category;
taLog.htmlText = curStory.description + catlist[1];
Note - 'curStory.description' parses fine without 'catlist[1]', and trace returns the value I want.
Thanks.