播放完后自动关闭flash播放器
我需要关闭一个覆盖在另一部分上的 Flash 播放器。当视频结束时,我创建的“div”(覆盖以显示视频)必须消失,显示原始内容。尝试了一切。
I need to close a flash player which is overlayed over another portion. When the video is over, the 'div' i created (overlayed to display video)must vanish showing the orginal content. tried everything.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 JavaScript 函数从 DOM 树中删除打开的
。
为此,请使用
externalinterface.call
方法。您只需创建一个 JavaScript 函数并嵌入 Flash 对象,并将allowscriptaccess
选项设置为“always”。JavaScript 函数可以是这样的:
以及相应的 ActionScript:
You can use a javascript function to remove the opened
<div>
from the DOM tree.For this use the
Externalinterface.call
method. You just need to create a javascript function and embed the flash object with theallowscriptaccess
option set to always.The JavaScript function could be like this:
And the corresponding ActionScript: