Flash AS3/startDrag 和 stopDrag 之间的鼠标位置
我有一个“拖动项目”和一些“放置目标”,因此我想在拖动“拖动项目”时突出显示放置目标,因此需要跟踪鼠标位置或侦听鼠标移动事件。我尝试订阅 ENTER_FRAME 事件并进行命中测试,但想知道这种情况有什么解决方案。谢谢。
I have a 'drag item' and some 'drop target' so I want to highlight drop target while 'drag item' is dragging so need to track mouse position or listen the mouse move event. I try subscribe ENTER_FRAME event and do hit test but wonder there's any solution for this case. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请注意,如果您正在监听开始/停止拖动,那么您应该在开始/停止事件发生时添加/删除 MOUSE_MOVE 监听器。
Note that if you're listening for start/stop drag then you should add/remove the MOUSE_MOVE listener when the start/stop events take place.