12

有没有任何方法可以在没有任何程序或脚本的情况下做到这一点?(也许通过 osascript?)

4

2 回答 2

37

您可以使用 Applescript 自动单击鼠标。

tell application "System Events"
    tell application process "Application_Name"
        key code 53
        delay 1
        click (click at {1800, 1200})
    end tell
end tell

如果你想在浏览器窗口中点击,你可以在 Javascript 的帮助下使用 Applescript

tell application "safari"
    activate
    do JavaScript "document.getElementById('element').click();"
end tell

纯粹通过终端,您可以使用名称click.m或您喜欢的任何名称创建一个文本文件,使用以下代码保存它

// File:
// click.m
//
// Compile with:
// gcc -o click click.m -framework ApplicationServices -framework Foundation
//
// Usage:
// ./click -x pixels -y pixels
// At the given coordinates it will click and release.
//
// From http://hints.macworld.com/article.php?story=2008051406323031
#import <Foundation/Foundation.h>
#import <ApplicationServices/ApplicationServices.h>

int main(int argc, char *argv[]) {
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
    NSUserDefaults *args = [NSUserDefaults standardUserDefaults];

    int x = [args integerForKey:@"x"];
    int y = [args integerForKey:@"y"];

    CGPoint pt;
    pt.x = x;
    pt.y = y;

    CGPostMouseEvent( pt, 1, 1, 1 );
    CGPostMouseEvent( pt, 1, 1, 0 );

    [pool release];
    return 0;
}

然后按照说明编译它:

gcc -o click click.m -framework ApplicationServices -framework Foundation

并将其移动到适当的系统文件夹以方便

sudo mv click /usr/bin
sudo chmod +x /usr/bin/click

现在您可以运行一个简单的终端命令来操作鼠标

click -x [coord] -y [coord]

注意:Jardel Weyrich 提供了一个更全面的代码示例,这里和 John Dorian 提供了一个用 Java 编写的很好的解决方案,这里

于 2014-11-01T07:46:21.023 回答
0

嘿。我有同样的问题,我不确定这是否是您要寻找的,但它可以让您将鼠标移动到屏幕上的给定坐标并执行单击。虽然你需要英特尔,但我不需要,所以我无法使用它,但我会给你任何你可能需要的帮助。链接:http ://hints.macworld.com/article.php?story=2008051406323031

于 2011-04-07T15:26:03.660 回答