Developers will often face a roadblock when loading remote data in their widget, because unless a cross-domain file is present, Flash will throw a "sandbox" security error. For performance reasons, it is better if you rely on a cross-domain file being present, however if this is not an option you can use widget.newHTTP() and widget.newRSS() to create loader objects that will proxy your data in an accessible domain. Both of these functions work in a similar manner, but newRSS() is meant for loading RSS feeds, and supports authorization.
yourminis
I'm using this technique but my RSS feeds are being cached.
Is there some way for me to prevent YourMinis from caching the RSS feed?
I've tried:
var rss:Object=widget.newRSS();
rss.noCache = true;
rss.load(new URLRequest(feed));
But it's still caching the feed.
Thanks,
Andy
Posted by: Andy Milk | March 03, 2009 at 12:01 PM