alertDescription:
The alert executor is used to display a text message to the user with a message box type experience . The dialog will have one button, OK.
Parent: execute, then, else
Value (simple form): string specifying the text message to display
Value (key/value form):
alert: string, required, specifying the text message to displaytitle: string, optional, specifying the message box title (default is null)image: string, specifying the name of an image to display in message box (default is null)timeout: time, optional, specifying the amount of time, after which the alert will be dismissed (default is null)
timeout is null, the alert will not be automatically dismissedtimeout has no unit, milliseconds is assumed# simple form
- alert: (string)
# simple example
- alert: Hello!
# key/value form
- alert: (string, required)
title: (string, optional)
image: (string, optional)
timeout: (time, optional)
# key/value example
- alert: Hello!
title: ALERT MESSAGE
Additional information:
alert can be displayed on the screen at a time, from different command executionsStatus: ✅ IMPLEMENTED (caveats: image, and timeout not yet functional)