Hello List
I've stack with a question of parsing the RSS 1 feed. I cannot access 
"<item>" node via dot syntax, for example

//this is short version of feed
var rss:XML =
            <rdf:RDF
            xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
            xmlns:dc="http://purl.org/dc/elements/1.1/";
            xmlns:sy="http://purl.org/rss/1.0/modules/syndication/";
            xmlns:admin="http://webns.net/mvcb/";
            xmlns:cc="http://web.resource.org/cc/";
            xmlns="http://purl.org/rss/1.0/";>
                <item>
                    <title>hello</title>
                    <description>world</description>
                </item>
            </rdf:RDF>

//i tried to do it with dot syntax
trace(rss.item.toXMLString())
//and also with namespaces
var ns:Namespace = rss.namespace("rdf");    
trace(rss.ns::RDF.item.toXMLString())

but this does not seems to work, can smbd point where am i wrong?
Thanks in advance

best regards David Vexler
 




------------------------ Yahoo! Groups Sponsor --------------------~--> 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to