Voglio eseguire due sequenze di tasti in AppleScript, successivamente. Lo script dovrebbe eseguire Comando + Shift + J e dopo quello Comando + W nell'applicazione Google Chrome .
Questo può essere fatto con AppleScript?
Prova ad usare uno script come questo:
activate application "Google Chrome"
tell application "System Events"
keystroke "j" using {shift down, command down}
delay 1
keystroke "w" using command down
delay 1
end tell
Leggi altre domande sui tag applescript