我对在Mac OS X上模拟鼠标点击事件/键盘描边感兴趣而不实际移动鼠标。
在Windows中,可以使用消息执行此操作:
win32: simulate a click without simulating mouse movement?
Mac OS X有这样的模拟吗?我知道Quartz Event Services,但似乎该API只会限制我将事件发送到当前密钥窗口。这是真的?是否可以将键盘/鼠标事件发送到非关键窗口?我真的只需要能够将键盘命令发送到另一个应用程序。
答案 0 :(得分:4)
我知道这是一个旧帖子,但我想发一个答案,万一有人偶然发现这个问题。
实现此目的的两种最佳方式实际上是完全独立于平台的。 (除非你想使用C,在我看来这是不必要的冗长,但如果你想使用它see this answer)
1)最简单的方法是使用javAuto。 (注意:javAuto移动了here)。它几乎是一个java程序,可以编译和运行跨平台的基本自动化脚本。要模拟鼠标单击,您可以使用以下命令:
mouseClick(button, x, y);
要在不移动鼠标的情况下模拟鼠标,您可以使用:
// get cursor coordinates
int cPos[] = cursorGetPos();
// mouse click at the coordinates you want
mouseClick("left", x, y);
// instantly move the mouse back
mouseMove(cPos[0], cPos[1]);
由于mouseClick和mouseMove命令不涉及任何临时鼠标移动,因此在(x,y)处会发生单击,但鼠标根本不会移动。
2)执行此操作的下一个最佳方法是使用常规Java,这将涉及比javAuto中的相同进程多一些代码。
import java.awt.*;
import java.awt.event.InputEvent;
public class example {
public static void main(String[] args) {
//get the current coordinates
PointerInfo a = MouseInfo.getPointerInfo();
Point b = a.getLocation();
int xOrig = (int)b.getX();
int yOrig = (int)b.getY();
try {
//simulate a click at 10, 50
Robot r = new Robot();
r.mouseMove(10, 50);
r.mousePress(InputEvent.BUTTON1_MASK); //press the left mouse button
r.mouseRelease(InputEvent.BUTTON1_MASK); //release the left mouse button
//move the mouse back to the original position
r.mouseMove(xOrig, yOrig);
} catch (Exception e) {
System.out.println(e.toString());
}
}
}
答案 1 :(得分:3)
这是一个工作的C程序,用于模拟坐标(X,Y)处的N次点击:
// Compile instructions:
//
// gcc -o click click.c -Wall -framework ApplicationServices
#include <ApplicationServices/ApplicationServices.h>
#include <unistd.h>
int main(int argc, char *argv[]) {
int x = 0, y = 0, n = 1;
float duration = 0.1;
if (argc < 3) {
printf("USAGE: click X Y [N] [DURATION]\n");
exit(1);
}
x = atoi(argv[1]);
y = atoi(argv[2]);
if (argc >= 4) {
n = atoi(argv[3]);
}
if (argc >= 5) {
duration = atof(argv[4]);
}
CGEventRef click_down = CGEventCreateMouseEvent(
NULL, kCGEventLeftMouseDown,
CGPointMake(x, y),
kCGMouseButtonLeft
);
CGEventRef click_up = CGEventCreateMouseEvent(
NULL, kCGEventLeftMouseUp,
CGPointMake(x, y),
kCGMouseButtonLeft
);
// Now, execute these events with an interval to make them noticeable
for (int i = 0; i < n; i++) {
CGEventPost(kCGHIDEventTap, click_down);
sleep(duration);
CGEventPost(kCGHIDEventTap, click_up);
sleep(duration);
}
// Release the events
CFRelease(click_down);
CFRelease(click_up);
return 0;
}
答案 2 :(得分:0)
您可以使用NSEvent,CGEvent或Accessibility API执行此操作。诀窍在于,如果它不是最前面的应用程序,首先通常需要先使要单击的应用程序激活。然后,您只需点击屏幕坐标中的一个点。