app.alertDialog
| Syntax |
app.alertDialog (string)
|
| Params |
string is a message you want displayed in an alert dialog box.
|
| Action |
Displays the string in a modal dialog box, waiting for the user to click on OK before returning true.
|
| Returns |
True.
|
| Examples |
app.start ("MinApp"); app.alertDialog ("Hello World!") » true
|
| Platform Notes |
This verb is only implemented in the Mac OS version of Frontier.
|
| Notes |
This verb allows script writers to deliver a message to the user without forcing the scripting system to the front. If the application isn't the frontmost application it brings itself to the front before displaying the dialog.
|
| See Also |
app.confirmDialog
|