AS3中双击鼠标右键事件?
Actionscript 3 中是否可以捕获双击右键事件?
It it possible to catch a double right click event in Actionscript 3?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Actionscript 3 中是否可以捕获双击右键事件?
It it possible to catch a double right click event in Actionscript 3?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
它与 AIR 一起使用。遗憾的是,您无法在常规 AS3 中捕获 RIGHT_CLICK。
然而,总是有可能在 JavaScript 中捕获右键单击事件,并使用ExternalInterface 调用 Flash 程序中的事件处理程序。例如,请参阅此博客。
It is with AIR. You can't capture RIGHT_CLICK in regular AS3, unfortunately.
There is, however, always the possibility of capturing right click events in JavaScript, and using ExternalInterface to call an event handler in the Flash program. See this blog, for example.
实际上,您现在可以捕获
RIGHT_CLICK
:-swf-version=19
使用此代码:
stage.doubleClickEnabled = true;
stage.addEventListener(MouseEvent.RIGHT_CLICK, handler);
在处理程序中,您可以节省上一次单击的时间,与第二次单击进行比较,如果小于 0.5 秒,则调度您自己的 RIGHT_DOUBLE_CLICK 事件。
Actually you can catch
RIGHT_CLICK
at the moment :-swf-version=19
Use this code :
stage.doubleClickEnabled = true;
stage.addEventListener(MouseEvent.RIGHT_CLICK, handler);
In handler you can save time of previous click, compare with second click and if it`s shorter than 0.5 seconds dispatch your own RIGHT_DOUBLE_CLICK event.