8 votes

Raccourci pour basculer entre Aujourd'hui et Notifications dans Yosemite

Alors qu'il est possible de définir un raccourci clavier pour faire apparaître le centre de notification dans Mac OS Yosemite, je ne trouve pas de moyen de basculer entre les panneaux "Aujourd'hui" et "Notifications" via le clavier - il semble que cela ne soit possible qu'en utilisant la souris/trackpad.

Y a-t-il quelque chose que j'ai négligé ?

2voto

fartheraway Points 4886

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

En fonction des besoins de l'utilisateur, qu'il s'agisse de basculer lorsque le menu est déroulé ou d'accéder simplement à Aujourd'hui ou aux notifications à la demande, on peut modifier le code ci-dessus et le lier à des raccourcis clavier.

1voto

Skela Points 111

J'ajoute juste ceci en me basant sur la réponse de Fartheraway (parce qu'il mentionne comment faire pour que l'onglet Aujourd'hui s'ouvre).

Voici comment faire pour qu'il s'ouvre dans l'onglet Notifications :

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

Il ne me reste plus qu'à trouver comment les faire fonctionner avec un raccourci clavier :(

1voto

Jeff V Points 151

Depuis Sierra, la disposition de la barre de menu a changé. Ce qui suit devrait fonctionner :

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

LesApples.com

LesApples est une communauté de Apple où vous pouvez résoudre vos problèmes et vos doutes. Vous pouvez consulter les questions des autres utilisateurs d'appareils Apple, poser vos propres questions ou résoudre celles des autres.

Powered by:

X