Chiudi il menu della barra dei menu con applescript

0
tell application "System Events" to tell process "SystemUIServer"
    tell (menu bar item 1 of menu bar 1 where description is "system sound volume")
        click
    end tell
end tell

aprirà la voce della barra dei menu audio, ma voglio ritardare di un secondo e poi chiuderla.

Ho provato:

tell application "System Events" to tell process "SystemUIServer"
    tell (menu bar item 1 of menu bar 1 where description is "system sound volume")
        click
        delay 1
        cancel
    end tell
end tell

ma non ha funzionato

    
posta theonlygusti 14.01.2017 - 22:23
fonte

1 risposta

2

L'hai quasi avuto. Questo funziona per me.

tell application "System Events" to tell process "SystemUIServer"
    tell (menu bar item 1 of menu bar 1 where description is "system sound volume")
        click
        delay 1
        key code 53
    end tell
end tell
    
risposta data 15.01.2017 - 03:11
fonte

Leggi altre domande sui tag