跨域将一个外部 SWF 加载到另一个 SWF
我有 a.swf,它是我的主应用程序的 SWF 文件,它正在尝试加载 b.swf,其中包含一些附加资源以及一些 Actionscript。 a.swf 位于 sub1.domain.com 上,b.swf 位于 sub2.domain.com 上(两者都在同一域上,只是不同的子域。)在 a.swf 中,我从 domain.com 加载了 crossdomain.xml并将以下代码添加到 a.swf 和 b.swf 中:
Security.allowDomain("*");
Security.allowInsecureDomain("*");
我是否还需要在 b.swf 中加载 crossdomain.xml 以防止安全错误,或者有 allowedDomain/allowInsecureDomain 就足够了吗?
更多信息: - 使用Flash Player 9 - 使用AS3
I have a.swf, which is the SWF file for my main application, and it's trying to load in b.swf, which contains some additional resources as well as some Actionscript. a.swf lives on sub1.domain.com and b.swf lives on sub2.domain.com (both on the same domain, just different subdomains.) In a.swf, I've loaded the crossdomain.xml from domain.com and also added the following code into both a.swf and b.swf:
Security.allowDomain("*");
Security.allowInsecureDomain("*");
Do I need to load the crossdomain.xml in b.swf as well to prevent a security error or is having allowDomain/allowInsecureDomain enough?
Further info:
- Using Flash Player 9
- Using AS3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,与 sub1/SWF A 相比,您需要 sub2/SWF B 来加载跨域。
但快速问题...它们是相同的域和不同的第三级别吗?
Yes, you need sub2/SWF B to load the crossdomain more so than the sub1/SWF A.
Quick question though... are they same domain and different third levels?