鼠标移出时闪光释放鼠标捕获

发布于 2024-11-25 07:06:29 字数 185 浏览 0 评论 0原文

我在 iframe 中加载了一个 Flash 应用程序。用户在 Flash 中按下鼠标并离开舞台。当用户离开舞台时,是否有办法从 Flash 中释放鼠标捕获,以便父级接收更多鼠标事件而不是 Flash 应用程序?

在 Firefox 和 Chrome 中,父级在用户松开鼠标之前不会收到事件 在 IE 中,当用户离开舞台时,父级会收到事件。

I have a flash app loaded in an iframe. User mouses down in flash and goes outside of stage. When user goes outside of stage, is there a way to release the mouse capture from flash so that parent receives further mouse events and not the flash app?

In Firefox and Chrome, parent doesn't receive events until the user mouses up
In IE, parent receives event when the user goes outside of stage.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尝试使用Event.MOUSE_LEAVE:

stage.addEventListener(Event.MOUSE_LEAVE,mouseLeaveHandler);

function mouseLeaveHandler(e:Event):void {
   trace("mouse left");
}

Try using Event.MOUSE_LEAVE:

stage.addEventListener(Event.MOUSE_LEAVE,mouseLeaveHandler);

function mouseLeaveHandler(e:Event):void {
   trace("mouse left");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文