从闪光灯触发厚盒
我想知道是否有人知道如何从 Flash 中的 onRelease() 事件触发厚盒。
这可能吗?
i wonder if somebody knows how to trigger thickbox from onRelease() event in flash.
is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ActionScript3 ExternalInterface 类来调用HTML 页面上的 JavaScript 函数如下所示:
您的 JavaScript 调用必须用引号引起来。
我没有使用过 ThickBox,但我确信您使用 JavaScript 与其交互。
编辑*
刚刚查看了 Thickbox API,我认为您的 JavaScript 调用将如下所示:
从 此处。我认为棘手的事情是将 HTML 内容覆盖在 Flash 内容之上。有一些关于此的论坛帖子。如果我遇到一个好的解决方案,我会编辑我的答案。
You can use the ActionScript3 ExternalInterface class to call a JavaScript function on your HTML page like this:
Your JavaScript calls, must be in quotes.
I haven't used ThickBox, but I am sure you use JavaScript to interact with it.
EDIT*
Just looked at the Thickbox API and i think your JavaScript call will look something like this:
Got that code from here. I think the tricky thing will be overlaying HTML content on-top of Flash content. There are a few forum posts about this around. I will edit my answer if I come across one with a good solution.