¿Puedo utilizar Automator para lanzar una combinación de teclas (cmd+R) cuando el programa PremierePro CS6 esté inactivo durante 1 minuto? Esta pulsación iniciaría el programa para renderizar los archivos de vídeo. Muchas gracias, Jan.
Respuesta
¿Demasiados anuncios?
Fuzzy Purple Monkey
Puntos
702
No sé qué tan bien funcionaría, pero podrías intentar ejecutar algo como esto en el Editor de AppleScript.
repeat
tell application "System Events" to tell process "Safari"
set p to properties of UI elements of UI elements
delay 10
if properties of UI elements of UI elements is p then
set frontmost to true
keystroke "r" using command down
--return
delay 20
end if
end tell
end repeat