For example, for RSS 2.0 feeds:
http://as3syndicationlib.googlecode.com/svn/trunk/src/com/adobe/xml/syndication/rss/RSS20.as
---
import com.adobe.xml.syndication.rss.RSS20
var rss:RSS20 = new RSS20();
rss.parse(stringOfRSS);
var items:Array = rss.getItems();
---
There is also a generic parses which will handle the parsing if you
dont know the feed type.
Best best is to pull down the docs from subversion, and check out the
APIs for the feed type you have.
http://code.google.com/p/as3syndicationlib/source
hope that helps...
mike chambers
I just wrote up a simple tutorial / example of how to use the library
to parse RSS 2.0 feeds (also applies to RSS 1.0 and Atom 1.0).
http://www.mikechambers.com/blog/2008/01/22/parsing-rss-20-feeds-in-actionscript-3/
mike chambers
That covers RSS, but the same basically applies for ATOM (just use the
atom classes).
mike chambers