在 AS3 中确定 Flash 上下文的最佳方法?

发布于 2024-11-26 12:38:07 字数 367 浏览 2 评论 0原文

我想知道我的 Flash 应用程序是在浏览器中运行还是在 Flash 创作工具(本地 Flashplayer)中进行了测试。

我想出了这个。

var isLocal:Boolean = !ExternalInterface.available || ExternalInterface.call("window.location.toString") == null;

除了 AS3 文档中所述之外,在浏览器中运行或本地测试时,ExternalInterface.available始终返回true

I want to know, if my Flashapplication is running in a browser or it is tested from within Flash authoring tool (local Flashplayer).

I came up with this one.

var isLocal:Boolean = !ExternalInterface.available || ExternalInterface.call("window.location.toString") == null;

Other than stated in the AS3 documentation ExternalInterface.available returns always true when running in a browser or testing locally.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

纸短情长 2024-12-03 12:38:07

尝试使用Capability.playerType,它将返回运行时环境的类型。

链接到此处的文档:

http:// /help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/system/Capability.html#playerType

Try using Capabilities.playerType, it will return the type of runtime environment.

Link to the documentation here:

http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/system/Capabilities.html#playerType

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