come posso usare applescript per digitare un'area specifica sullo schermo? Ho provato il comando 'keystroke', ma non sembra funzionare. inoltre, come posso usare applescript per visualizzare un'immagine? grazie mille se rispondi ecco il codice che ho finora:
set theText to text returned of (display dialog "Put what you want to autotype here." default answer "" buttons {"OK", "cancel"} default button 1)
display dialog "select where you want me to type " & theText & " Your text will be typed in the area selected. you have 10 seconds to select once you click 'OK'" buttons {"OK"}
delay 10
say "typing"
--command for typing here
end
end
end