跨域问题,求各位大师帮助一下
本帖最后由 sosscz 于 2013-01-09 00:12:01 编辑 我在A站上传了一个SWF,A战没有跨域策略文件
这个SWF读取了B站的内容,B站不设任何限制的跨域文件
放到C站这个论坛里,C站限制跨域,且都不是A或B站
为什么此时总是LOAD不到B站的内容..
操作软件FLASH CS3
Security.loadPolicyFile("http://photo.56.com/crossdomain.xml");
Security.allowDomain("*");
var xmlURL:URLRequest=new URLRequest("http://photo.56.com/album/?do=Plist&did=97390793");
var xmlLoader:URLLoader=new URLLoader(xmlURL);
xmlLoader.addEventListener(Event.COMPLETE,xmlLoaded);
function xmlLoaded(event:Event)
{
T1.text=event.target.data;
trace("载入成功");
}