如何实现“域名保护”在 ActionScript 3.0 中
我想限制我的 SWF 文件,使其无法被窃取并托管在另一台服务器上。因此,如果提供 SWF 文件的域不在批准的域列表中,则 SWF 将不会正常加载,而是会显示一条链接到批准的位置之一的消息。我不确定如何访问托管该文件的域(或获取该文件的完全限定 URL)。如果您知道如何获取该信息,或者如果您知道完全不同的情况可以达到相同的结果,请发布答案。
我正在使用 Flash CS4 编译针对 FP 9 的代码。
谢谢!
I want to limit my SWF file so that it cannot be stolen and hosted on another server. So if the domain serving the SWF file isn't on a list of approved domains, the SWF will not load normally but will instead display a message that links to one of the approved locations. What I'm unsure about is how to access the domain that is hosting the file (or get the fully qualified URL of the file). If You know how to get that information, or if you know of a completely different situation to achieve the same result, please post an answer.
I'm using Flash CS4 to compile the code targeting FP 9.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个
http://www.ghostwire.com/blog/archives/as3 -域锁定-swfs/
try this
http://www.ghostwire.com/blog/archives/as3-domain-locking-swfs/
我正在使用这行代码:
vardomain =ExternalInterface.call(“eval”,“document.domain”);
i'm using this line of code:
var domain = ExternalInterface.call ("eval", "document.domain");