Posso usare automator per avviare una sequenza di tasti (cmd + R) quando il programma PremierePro CS6 è inattivo per 1 minuto. Questa sequenza di tasti avvia il programma per il rendering dei file video. Mille grazie, gennaio
Posso usare automator per avviare una sequenza di tasti (cmd + R) quando il programma PremierePro CS6 è inattivo per 1 minuto. Questa sequenza di tasti avvia il programma per il rendering dei file video. Mille grazie, gennaio
Risposte:
Non so quanto funzionerebbe bene, ma potresti provare a eseguire qualcosa di simile in AppleScript Editor.
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
properties of UI elements of UI elements
controlla solo se proprietà come le posizioni di Windows sono state modificate.