Hey, I'm using this code to retrieve information from an xml file:-
code:
this.receiveRSSObject = function(rssObject)
{ trace("Adam's Comments");
for(var i = 0; i < rssObject.channels[0].items.length; i++)
{ trace(rssObject.channels[0].items[i].description);
}
}
rssObj = new RSSDataFactory()
rssObj.parseFeed("http://www.t1a0s.net/rssreader.php",
this, "receiveRSSObject");
Does anybody know how I can then put the information received into a dynamic text box? I've been trying for hours an i just cant get it to work