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ó