Actionscript 3 rss feed for the latest blog post
Wednesday, September 2nd, 2009Yesturday I was working on an rss feed for my flash site to show my latest blog posts. I’ve just completed it.
Edit: I had a hell of a problem with Firefox with the Sandbox Security error. After looking through various articles on the same problem I realised that I needed to pass out a parameter in the swfobject javascript:
params.allowscriptaccess = "sameDomain";.
I also added in the flash document:
Security.allowDomain("XXX");
Security.loadPolicyFile("http://XXX.co.uk/crossdomain.xml");
trace("Security type=" + Security.sandboxType);

