触发 jquery click() 的 AS2(不是 AS3)按钮
我真的很挣扎。我有一个内置于 AS2(不是 AS3)的 Flash 演示。我想单击一个按钮并执行 jQUERY click() 事件来隐藏/显示一个 DIV,该 DIV 将在 FLASH 文件顶部显示为“模态”。
但我什至无法让警报框工作...
Actionscript
on(press) { 导入 flash.external.*; ExternalInterface.call('function(){alert("测试"); }'); ?
关于我做错了什么有什么想法吗
I'm really struggling with this. I have a flash demo built in AS2 (not AS3). I want to click on a button and execute a jQUERY click() event to hide/show a DIV that will be shown as "modal" on top of FLASH file.
But I cannot even get an ALERT box to work...
Actionscript
on(press) {
import flash.external.*;
ExternalInterface.call('function(){ alert("test"); }');
}
Any ideas on what am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没关系...我自己解决了这个问题。为了使其工作,您必须确保始终允许访问脚本。以下行位于 FLASH 的标签内:
Nevermind... I fixed the issue myself. To make it work you have to make sure that access to script is ALWAYS allowed. The following line is inside the tag of the FLASH: