Flex 中鼠标单击时的全局坐标值
在 Flex 中,我使用以下代码:
我正在使用 event.event.localX 来获取 x 轴,但它是参考本地坐标的。如何获取或传递用户单击的 HBox 的 xAxis 的值,以便我可以将其添加到本地坐标的 xAxis 中。
换句话说,我需要全局坐标值? (即x轴和y轴)
In Flex, I am using the following code:
I am using event.event.localX to get the x-axis but it is with reference to local coordinates. How can I get or pass the value of the HBox's xAxis that is clicked by the user so that I can add it in the xAxis of the local coordinate.
In other words, I need the global coordinate value? (i.e. x-axis & y-axis)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MouseEvent
具有stageX
和stageY
属性。MouseEvent
hasstageX
andstageY
properties.