Gen
unread,Nov 26, 2007, 4:06:43 AM11/26/07Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ActionScript 3 Syndication Library
Hi
I just tested this library and is working great.
But two things.
1) I have a rdf feed which includes description and content:encoded
node in a single item.
I've managed to retrieve the description however, can't get the
content:encoded node.
Any solution?
[code]
var feed:IFeed = FeedFactory.getFeedByXML(new XML(e.target.data));
var len:uint = feed.items.length;
for(var i:uint = 0; i < len; i++){
var item:IItem = feed.items[i];
trace(item.excerpt.value); //give me discription
}
[/code]
2) In the above code, I also tried to loop item:IItem so that I
thought I could find the missing variables but it didn't give me
anything. I thought properties were set
isPropertyEnumerable("something", false) but looks not.
Is there anyway to dump the object?
regards,
Gen