Ekranda belirli bir alana yazmak için applescript'i nasıl kullanabilirim? 'Tuş vuruşu' komutunu denedim, fakat işe yaramadı. ayrıca, bir resmi görüntülemek için applescript'i nasıl kullanabilirim? cevap verirsen çok teşekkür ederim. İşte şimdiye kadar sahip olduğum kod:
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