Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从 mxj 对象内部,有没有办法确定当前是否按下了任何鼠标按钮?
我知道在 Max 补丁中,这些数据可以从 [mousestate] 对象中收集。我想做同样的事情,但在我的 Java 代码中。
有任何想法吗?
我用它来获取鼠标位置。
public void bang() { Point p = MouseInfo.getPointerInfo().getLocation(); post(""+p.getX()); }
借助上面的代码,获取鼠标状态应该非常容易。
经过数小时的搜索,我想不出任何方法可以从 mxj 对象中获取鼠标状态数据。我不确定这是否可能。我最终使用 [mousestate] 制定了一个笨重的解决方案。