火狐浏览器flash 扩展我的外部接口有问题(
我如何与我的 Flash 应用程序通信?我加载到我的扩展闪存中 在 mac os 和 firefox 上有些这样的
myDiv.innerHTML = <object…><param allowScriptAsses… etc …
flash load fine !!! now, i trace my externalInterface method
var flashObject = document.get…("myFlash")
alert(flashObject) <- okey - [embedHtmlObject …
alert(flashObject.myExternalMethod) <- native function its okey !!!
try excute
flashObject.myExternalMethod() and NOTHING !!! ((( externalMEthod not invoked !!! this problem ONLY on windows 7 in fireFox !
我使用wrappedObject和externalInterface工作得很好!但如果我尝试在 Windows 系统上使用wrappedObject - 我有错误(((
我如何在 Firefox 中的 Windows 上正确使用ExternalInterface?
how i can communicate with my flash app ? i load in my extension flash
some like this
myDiv.innerHTML = <object…><param allowScriptAsses… etc …
flash load fine !!! now, i trace my externalInterface method
var flashObject = document.get…("myFlash")
alert(flashObject) <- okey - [embedHtmlObject …
alert(flashObject.myExternalMethod) <- native function its okey !!!
try excute
flashObject.myExternalMethod() and NOTHING !!! ((( externalMEthod not invoked !!! this problem ONLY on windows 7 in fireFox !
on mac os and firefox i use wrapedObject and externalInterface work fine ! but if i try use wrapedObject on windows system - i have error (((
HOW i can use ExternalInterface on windows in firefox correctly ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您需要向 ActionScript 代码添加回调:
如果您使用 swfObject 嵌入 Flash 影片,则可以使用 swfobject.getObjectById 来检测您的 swf 并调用您的方法。
如果您不使用 swfObject,只需在 JS 代码上复制并粘贴 getObjectById 方法:
并通过执行以下操作来调用它:
看看这个,我实际上在我的博客上编写了一个小示例: http://www.nelsond8.com/?p=515
First you need to add a callback to your ActionScript code:
If you are using swfObject to embed your flash movie you can use swfobject.getObjectById to detect your swf and call your methods.
If you are not using swfObject just copy and past the getObjectById method on your JS code:
And call it by doing:
Have a look on this, I actually code a small example on my blog: http://www.nelsond8.com/?p=515