Cerrar el menú de la barra de menú con applecript

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

abrirá el elemento de la barra de menú de sonido, pero quiero retrasar un segundo y luego cerrarlo.

Lo intenté:

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

pero eso no funcionó

    
pregunta theonlygusti 14.01.2017 - 22:23

1 respuesta

2

Casi lo tienes. Esto funciona para mí.

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
    
respondido por el wch1zpink 15.01.2017 - 03:11

Lea otras preguntas en las etiquetas