Atajo para cambiar entre Hoy y Notificaciones en Yosemite

7

Si bien es posible configurar un método abreviado de teclado para abrir el Centro de notificaciones en Mac OS Yosemite, no puedo encontrar una manera de cambiar entre los paneles "Hoy" y "Notificaciones" a través del teclado. Parece que solo es posible usando el mouse / trackpad.

¿Hay algo que haya pasado por alto?

    
pregunta Bernd 22.10.2014 - 20:49

3 respuestas

2

Applescript:

tell application "System Events" to tell process "SystemUIServer"
    click menu bar item "Notification Center" of menu bar 2
end tell

tell application "System Events" to tell process "NotificationCenter"
    click radio button "Today" of radio group 1 of window "NotificationTableWindow"
end tell

Depende de lo que necesite un usuario, ya sea para cambiar cuando se saca el menú o simplemente para acceder a Hoy o Notificaciones a pedido, se puede modificar el código anterior y vincularlo a los atajos de teclado.

    
respondido por el fartheraway 22.10.2014 - 21:45
1

Solo agregando esto en función de la respuesta de Fartheraway (porque menciona cómo abrir la pestaña Hoy).

A continuación, le indicamos cómo hacer que se abra en la pestaña Notificaciones:

tell application "System Events" to tell process "SystemUIServer"
    click menu bar item "Notification Center" of menu bar 2
end tell

tell application "System Events"
    tell process "Notification Center"
        click radio button "Notifications" of radio group 1 of window "NotificationTableWindow"
    end tell
end tell

Ahora solo necesito descubrir cómo ejecutar estos con un método abreviado de teclado :(

    
respondido por el Skela 23.02.2015 - 06:35
0

A partir de Sierra, el diseño de la barra de menú ha cambiado. Lo siguiente debería funcionar:

tell application "System Events" to tell process "SystemUIServer"
    click menu bar item "Notification Center" of menu bar 1
end tell

tell application "System Events" to tell process "NotificationCenter"
    click radio button "Today" of radio group 1 of window "NotificationTableWindow"
end tell
    
respondido por el Jeff V 14.05.2017 - 01:30

Lea otras preguntas en las etiquetas