¿Cómo vincular múltiples eventos clave en AppleScript?

1

He estado intentando escribir un AppleScript que abriría la aplicación de correo. Registrar como evento clave (Shift + Comando + S) esperar 1.5 segundos, hacer un evento clave de retorno ("Enter") y luego esperar 1 segundo y luego registrar un evento clave de flecha hacia abajo.

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
    
pregunta Sawyer Powell 30.05.2015 - 20:53

1 respuesta

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
    
respondido por el fartheraway 04.06.2015 - 11:40

Lea otras preguntas en las etiquetas