User notification dialogs¶
ExtendScript provides a set of globally available functions that allow you to display short messages to the user in platform-standard dialog boxes. There are three types of message dialogs:
Alert - Displays a dialog containing a short message and an OK button.
Confirm - Displays a dialog containing a short message and two buttons, Yes and No, allowing the user to accept or reject an action.
Prompt - Displays a dialog containing a short message, a text entry field, and OK and Cancel buttons, allowing the user to supply a value to the script.
These dialogs are customizable to a small degree. The appearance is platform specific.
Global alert function¶
Displays a platform-standard dialog containing a short message and an OK button.
alert()¶
alert (message[, title, errorIcon]);
message |
The string for the displayed message. |
title |
Optional. A string to appear as the title of the dialog, if the platform supports a title. Mac OS does not support titles for alert dialogs. The default title string is “Script Alert.” |
errorIcon |
Optional. When true, the platform-standard alert icon is replaced by the
platform-standard error icon in the dialog. Default is |
Returns undefined
Examples¶
This figure shows simple alert dialogs in Windows and in Mac OS.
This figure shows alert dialogs with error icons.
Global confirm function¶
Displays a platform-standard dialog containing a short message and two buttons labeled Yes and No.
confirm()¶
confirm (message[,noAsDflt ,title ]);
message |
The string for the displayed message. |
noAsDflt |
Optional. When true, the No button is the default choice, selected when the user types
|
title |
Optional. A string to appear as the title of the dialog, if the platform supports a title. Mac OS does not support titles for confirmation dialogs. The default title string is “Script Alert.” |
Returns true
if the user clicked Yes, false
if the user clicked No.
Examples¶
This figure shows simple confirmation dialogs on Windows and Mac OS.
This figure shows confirmation dialogs with No as the default button.
Global prompt function¶
Displays a platform-standard dialog containing a short message, a text edit field, and two buttons labeled OK and Cancel.
prompt()¶
prompt (message, preset[, title ]);
message |
The string for the displayed message. |
preset |
The initial value to be displayed in the text edit field. |
title |
Optional. A string to appear as the title of the dialog, if the platform supports a title. Mac OS does not support titles for confirmation dialogs. The default title string is “Script Alert.” |
Returns the value of the text edit field if the user clicked OK, null
if the user clicked Cancel.
Examples¶
This figure shows simple prompt dialogs on Windows and Mac OS.
This figure shows confirmation dialogs with a title value specified.