跨域将一个外部 SWF 加载到另一个 SWF

发布于 2024-11-01 09:19:44 字数 442 浏览 0 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幸福丶如此 2024-11-08 09:19:44

是的,与 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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文