为什么 Flash 的外部接口 *有时* 不起作用?
我有一个 Flash 电影,其中有许多 ActionScript 2 函数,这些函数通过ExternalInterface 暴露给 Javascript。 通常这部电影运行良好并且 Javascript 可以与之通信。 但有时,在没有解释的情况下,Javascript 中的 Flash 对象会间歇性地不具有ExternalInterface 函数。 当我在页面上多次安装这个单一 Flash 文件时,就会发生这种情况,并且经常会发生一两个 Flash 实例具有该功能,而一两个则不具有该功能的情况。 。 完全相同的 Flash 源,嵌入页面 3 或 4 次。 很奇怪。 关于可能出什么问题或者我应该从哪里开始寻找有什么想法吗? 我很茫然。
I have a Flash movie which has a number of actionscript 2 functions which are exposed to Javascript via ExternalInterface. Normally this movie works fine and Javascript can communicate with it. But sometimes, intermittently and without explanation, the flash object in Javascript will not have the ExternalInterface functions. This happens when I have this single flash file installed on the page more than once, and it often happens that one or two instances of the flash will have the functions, and one or two will not. Same exact flash source, embedded onto the page 3 or 4 times. Very odd. Any ideas as to what might be wrong or even where I should start looking? I am at a loss.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您的问题是当您拨打电话时 Flash 应用程序尚未准备好。
每当我必须做通信 JS > Flash 我总是让Flash“说话”。 基本上,启用 Flash 影片在准备好并完全加载时调用的 JS 函数。 然后才允许JS端调用Flash。
哈!
胡安
Maybe you problem is that the Flash app is not ready when you make the call.
Whenever I had to do communication JS > Flash I always let Flash "do the talking". Basically, enable a JS function that the Flash movie calls when it's ready and fully loaded. Then and only then allow the JS side to make calls to Flash.
HTH!
Juan