Posso usare l'automazione per avviare una sequenza di tasti quando il programma è inattivo

0

Posso utilizzare l'automazione per avviare una sequenza di tasti (cmd + R) quando il programma PremierePro CS6 è inattivo per 1 minuto. Questa sequenza di tasti avvia il programma in Render video. Molte grazie, Jan.

    
posta Jan Bauters 23.09.2012 - 14:44
fonte

1 risposta

1

Non so quanto potrebbe funzionare, 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
    
risposta data 23.09.2012 - 17:36
fonte

Leggi altre domande sui tag