Hi,

Is there a way in which I could parse XML with namespaces in E4X?

following code, I can see the value without namespace.

var res:XML = <items><item>apple</item><item>orange</item></items>;
trace(res.item[0]);

but, following code, I could'nt.

var res:XML = <items xmlns="http://example.com/";>
                <item>apple</item><item>orange</item>
              </items>;
trace(res.item[0]);


Thanks,
Yokota Satoshi



------------------------ Yahoo! Groups Sponsor --------------------~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/I258zB/QnQLAA/TtwFAA/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