¿Cómo puedo utilizar applescript para escribir en un área específica de la pantalla? He probado el comando 'keystroke', pero parece que no funciona. también, ¿cómo puedo usar applescript para mostrar una imagen? muchas gracias si responden. aquí está el código que tengo hasta ahora:
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