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
-
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
-
timeout - (integer) le temps imparti à la notification. Ce temps est ignoré sur certains systèmes d'exploitation tel Ubuntu
Renvoie
Exceptions
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 pour changer le texte.