ui.showNotification
Description
Show a notification above the system tray for a short time.

Parameters
text string

Return value
none

Example
-- Show a custom notification at the bottom-right corner of the primary monitor's client area
ui.showNotification("Hello world!")

Comments
Notifications are similar to standard Windows toast notifications but are standalone and always displayed. They do not stack or go to the Action Centre.
Spamming ui.showNotification will simply replace the current message and reset the display timer.

See also
ui.printNotification
ui.messageBox

Back