====== Notify [En cours de Traduction Wismerheal][WSL] ====== Cet objet vous permet d'envoyer des notifications système. Cela ne fonctionne que sur GNU/Linux. ===== Fonctions ===== ==== Notify ==== Fonction de construction. === Syntaxe === var myObject = new Notify(); var myObject = new Notify(parameters); === Arguments === - parameters - (object) les paramètres de message * title - (string) le titre de la notification * text - (string) le texte de la notification * icon - (string) le nom de l’icône de la notification ou le chemin vers le fichier image (voir[[http://standards.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html]]) * timeout - (integer) le temps imparti à la notification. Ce temps est ignoré sur certains systèmes d'exploitation tel Ubuntu === Example === var myObject = new Notify(); var myObject = new Notify({ title: "Hello", text: "Hello automation world!" }); ===== Méthodes ===== ==== show ==== Fait apparaître la notification. === Syntaxe === myObject.show(); myObject.show(parameters); === Arguments === - parameters - (object) les paramètres de message * title - (string) le titre de la notification * text - (string) le texte de la notification * icon - (string) le nom de l’icône de la notification ou le chemin vers le fichier image (voir[[http://standards.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html]]) * timeout - (integer) le temps imparti à la notification. Ce temps est ignoré sur certains systèmes d'exploitation tel Ubuntu === Renvoie === * (Notify) ce Notify === Exceptions === * (NotificationError) na parvient pas à faire apparaître la notification === Example === myObject.show(); myObject.show({ title: "Hello", text: "Hello automation world!" }); === Notes === Si vous voulez mettre à jour un texte de notification, réutilisez un simple objet Notify et appelez [[#show|show]] pour changer le texte.