I've got a Flash movie, loading data from an external URL. In fact, it's a RSS reader inside a banner.
Everything works perfectly when the Flash movie and data URL are on the same domain. However, if the Flash movie is on another domain, Flash security kicks in.
The manual says that I can allow a domain trough Security.AllowDomain()
system.Security.allowDomain("http://www.mydomain.abc/")
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("http://www.mydomain.abc/content.php");
But when I embed the .swf in a HTML page, the data won't load. Any tips how to debug or solve this?