Collegamento per passare da Oggi a Notifiche in Yosemite

7

Sebbene sia possibile impostare una scorciatoia da tastiera per far apparire il Centro di notifica in Yosemite per Mac OS, non riesco a trovare un modo per passare tra i pannelli "Oggi" e "Notifiche" tramite la tastiera - sembra solo possibile usando il mouse / trackpad.

C'è qualcosa che ho trascurato?

    
posta Bernd 22.10.2014 - 20:49
fonte

3 risposte

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

Affidati a ciò di cui un utente ha bisogno, che si tratti di cambiare quando viene estratto il menu o semplicemente di accedere a Today o alle notifiche su richiesta, è possibile modificare il codice precedente e collegarlo a scorciatoie da tastiera.

    
risposta data 22.10.2014 - 21:45
fonte
1

Basta aggiungere questo in base alla risposta di Fartheraway (perché menziona come aprire la scheda Oggi).

Ecco come aprirlo nella scheda Notifiche:

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

Ora ho solo bisogno di capire come eseguire queste scorciatoie da tastiera: (

    
risposta data 23.02.2015 - 06:35
fonte
0

A partire da Sierra, il layout della barra dei menu è cambiato. Il seguente dovrebbe funzionare:

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
    
risposta data 14.05.2017 - 01:30
fonte

Leggi altre domande sui tag