4 votes

Documentation du centre de notification pour Applescript

Où puis-je trouver de la documentation sur la méthode du centre de notification et les propriétés pour l'utiliser dans Applescript ? Je ne trouve rien dans le dictionnaire de l'éditeur script ni sur le web.

Voici un exemple de code pour travailler avec le centre de notification :

on run
    tell application "System Events"
        tell process "Notification Center"
           set theseWindows to every window
           display notification (count of theseWindows)
        end tell
   end tell
end run

3voto

daniel kullmann Points 2619

ScriptL'application Editor dispose d'une bibliothèque consultable. Ouvrez-la dans le menu Fenêtre, puis sélectionnez l'ensemble Standard Additions. Si vous recherchez le terme notification, vous verrez qu'il est défini sous Interaction avec l'utilisateur :

display notification [text] : the body text of the notification
  [with title text] : the title of the notification (default is the name of the calling application).
  [subtitle text] : the subtitle of the notification
  [sound name text] : the name of the sound to play

Mais le centre de notifications n'a pas de Windows. Essayez-vous de compter toutes les fenêtres pour toutes les applications ?

Pour être clair, il s'agit ici de la partie notification en mettant de côté ce que pourrait être un comptage de fenêtres :

on run
    tell application "System Events"
        tell process "Notification Center"
            set theseWindows to "a b c"
            display notification (count of theseWindows)
        end tell
    end tell
end run

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