在 AS3 中确定 Flash 上下文的最佳方法?
我想知道我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用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