在 Mac OS X 上使用 Ruby,如何以编程方式单击屏幕以及鼠标移动、鼠标按下和鼠标抬起?

发布于 2024-10-26 15:17:01 字数 187 浏览 1 评论 0原文

最好的方法是什么? ffi、RubyCocoa 或 MacRuby 可以吗?

似乎可以使用 CGEventCreateMouseEvent 或 CGPostMouseEvent (已弃用)。

请给出一个工作示例。谢谢。

更新:此问题的标题已更新...

What are the best way(s) to do it? Can ffi, RubyCocoa, or MacRuby do it?

It seems like CGEventCreateMouseEvent or CGPostMouseEvent (deprecated) can be used.

Please give a working example. thanks.

Update: the title of this question updated...

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

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

发布评论

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

评论(1

合约呢 2024-11-02 15:17:01

在 MacRuby 中,您的视图可以捕获这些事件。只需查看 MacRuby 附带的 DotView 示例即可。

class MyView < NSView 
  def mouseUp event
    puts convertPoint(event.locationInWindow, fromView:nil)
  end
end

In MacRuby your views can catch these events. Just look into the DotView example that comes with MacRuby.

class MyView < NSView 
  def mouseUp event
    puts convertPoint(event.locationInWindow, fromView:nil)
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文