如何从 javascript 检查 Flash 对象是否处于全屏模式
我需要从 JavaScript 检查给定的 Flash 对象是否处于全屏模式。我知道有 stage.displayState
属性,但如何使用 GetVariable
访问它?或者也许还有另一种方法?
谢谢。
PS 如果你知道如何用其他语言做到这一点,那也没关系。
I need to check from javascript that given flash object is in fullscreen mode. I know that there is stage.displayState
property but how to access it using GetVariable
? Or maybe there is another way?
Thanks.
P.S. If your know how to do that from any other language it is ok too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要在 AS 内添加一个可以从 JS 层调用的函数:
然后,您应该能够从 JS 调用它:
ExternalInterface 文档 此处,舞台显示状态此处。
希望有帮助。干杯!
you'll probably need to add a function inside AS that you can call from the JS layer:
then, you should be able to call it from JS:
docs for ExternalInterface here, stage display state here.
hope that helps. cheers!