Immanuel
unread,Apr 1, 2008, 8:07:11 AM4/1/08Sign 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'm trying to use the as3syndicationlib for the first time but without
success. I've included both as3syndicationlib and corelib source dir,
and then I load the xml and then I call this code:
private function completeHandler(event:Event):void
{
var loader:URLLoader=URLLoader(event.target);
var result:XML=new XML(loader.data);
var feed:IFeed = FeedFactory.getFeedByXML(result);
trace(IItem(feed.items[0]).date);
}
But this is the trace output on my console:
Error: Unable to parse the string [Tue, 01 Apr 2008 11:02:04 GMT] into
a date. The internal error was: Error: No class registered for
interface 'mx.resources::IResourceManager'.
at com.adobe.utils::DateUtil$/parseRFC822()[c:\sources\actionscript
\test_newsfeed_library\com\adobe\utils\DateUtil.as:460]
Other fields (like title, id...) works fine. The error is thrown only
with the date.
Please, any help is appreciated!