Come collegare più eventi chiave in AppleScript?

1

Ho cercato di scrivere un AppleScript che aprisse l'app di posta registra un salvataggio come evento chiave (Maiusc + Comando + S) attendi 1,5 secondi, fai un evento chiave di ritorno ("Invio") e poi attendi un altro 1 secondo e quindi registrare un evento chiave freccia giù.

activate application "Mail"
repeat 2310 times
    tell application "System Events" to keystroke "s" using {shift down,command down}
    delay 1.5
    tell application "System Events" to keystroke "return"
    delay 1
    tell application "System Events" to keystroke "DownArrow"
end repeat
    
posta Sawyer Powell 30.05.2015 - 20:53
fonte

1 risposta

1
tell application "System Events" to repeat 2310 times
    tell application process "Mail" to set frontmost to true
    keystroke "s" using {shift down, command down}
    delay 1.5
    keystroke return
    delay 1
    key code 125
end repeat
    
risposta data 04.06.2015 - 11:40
fonte

Leggi altre domande sui tag