How can I control click with AppleScript?
This script should work, but it doesn't
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 is sometimes unreliable. I know of cliclick — still haven't tried it.
I'd prefer an AS only workaround but welcome any suggestions.