ExternalInterface.addCallback 不起作用?
我有一个 Flash/AS3 项目,我正在尝试添加回调,我像这样添加了回调:
ExternalInterface.addCallback('force_refresh',force_refresh);
并且我从 JS 中调用,如下所示:
function thisMovie(movieName) {
if (navigator.appName.indexOf("Microsoft") != -1) {
return window[movieName];
} else {
return document[movieName];
}
}
function forceRefresh() {
thisMovie("monthly_goals").force_refresh();
}
我确保导入了ExternalInterface 类,我将allowScriptAccess 设置为“总是”, 我提醒了 thisMovie("monthly_goals") 并确认 JS 看到了该对象。
不知道为什么它不起作用? 有任何想法吗?
谢谢。
I have a Flash/AS3 project I am trying to add a call back on, I added the call back like so:
ExternalInterface.addCallback('force_refresh',force_refresh);
and I am calling in from JS like this:
function thisMovie(movieName) {
if (navigator.appName.indexOf("Microsoft") != -1) {
return window[movieName];
} else {
return document[movieName];
}
}
function forceRefresh() {
thisMovie("monthly_goals").force_refresh();
}
I made sure I am importing the ExternalInterface class, I set allowScriptAccess to "always",
I alerted thisMovie("monthly_goals") and confirmed that JS sees the object.
Not sure why else it would not be working? any ideas?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所以我的回调方法需要一个参数,而我在从 JS 调用它时没有传递一个参数,所以我猜它只是默默地失败了。
So my call back method was expecting a parameter and I was not passing one when calling it from JS, so I guess it was just failing silently.