dialog.notify
| Syntax |
dialog.notify (message)
|
| Params |
message is a string to be displayed in the dialog.
|
| Action |
Displays a dialog containing message and a single button labeled "OK." It then waits for the user to click on this button.
|
| Returns |
True
|
| Examples |
dialog.notify ("137 files deleted") » true
dialog.notify ("Entering intergalactic space! ¨¨Good luck, Captain!")
The above example demonstrates the use of the ¨ symbol to place carriage returns in dialog box prompts. |
| Notes |
This verb displays a standard dialog box nearly identical to that generated by dialog.alert, except that instead of the exclamation point icon it uses a "speech bubble" icon. This verb should be used to notify the user of actions that are more routine than those for which dialog.alert is designed.
|
| See Also |
dialog.alert
|