Shoutbox

Actionscript/Flash help - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: Actionscript/Flash help (/showthread.php?tid=64381)

Actionscript/Flash help by t1a0s on 08-02-2006 at 09:14 PM

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 :|