A repeating script types the name of a file in the Save dialog.
Sometimes the name field isn’t selected so I want to click it with “click at {1080, 188}”… but nothing happens.
The coords are correct as I’ve tested the menu also in the dialog which works fine.
Doesn’t work in Apple Preview or Chrome.
on run {input, parameters}
delay 3
tell application "System Events"
click at {1080, 188} -- does nothing, the save field
delay 3
click at {1010, 725} -- works, clicks the menu
delay 3
end tell
return input
end run
Thanks.