如何使用 AppleScript 控制点击?
该脚本应该可以工作,但不能
activate application "Finder"
tell application "System Events"
tell process "Finder"
key down control
delay 1
click at {600, 600} -- {from left, from top}
delay 1
key up control
end tell
end tell
MouseTools 有时不可靠。我知道 cliclick - 还没有尝试过。
我更喜欢仅 AS 的解决方法,但欢迎提出任何建议。