SWFObject Flash 未显示
我试图让 SWFObject 注册一个静态 flash 对象,但我不会显示它。我知道可见性设置为隐藏,这就是原因,但为什么要这样做?!
i've tried to get SWFObject register a static flash object, but i wont show it. I know visibility is set to hidden, and that is why, but why does it do that?!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的示例使用 JavaScript 嵌入 SWF,它没有使用 SWFObject 的静态方法,因此您的问题似乎不再有效。
顺便说一句,您可以通过消除冗余的 hasFlashPlayerVersion 检查并使用 SWFObject 的回调函数<来简化代码/a>.
当前的:
。
简化:
.
SWFObject 的
swfobject.embedSWF
方法包含 domready 检查,因此您不需要使用 addLoadEvent。它还包括对指定 Flash Player 版本的检查,因此您无需将代码包装在swfobject.hasFlashPlayerVersion
块中。Your example uses JavaScript to embed the SWF, it isn't using SWFObject's static approach, so it appears your question is no longer valid.
BTW, you can simplify your code by eliminating the redundant hasFlashPlayerVersion check and by using SWFObject's callback function.
Current:
.
Simplified:
.
SWFObject's
swfobject.embedSWF
method includes a domready check, so you don't need to use addLoadEvent. It also includes a check for a specified version of Flash Player, so you don't need to wrap your code in theswfobject.hasFlashPlayerVersion
block.