// form1.page1.areYouSureBtn::click - (JavaScript, client)
var yesOrNo = xfa.host.messageBox("Are you sure?","Do Not Press That Button",2,2);
if (yesOrNo == 3) {
xfa.host.messageBox("The answer is 'No'.","Negative Response",3);
}
else {
if (yesOrNo == 4) {
xfa.host.messageBox("The answer is 'Yes'.","Positive Response",3);
}
}
messageBox
param1 | A valid string representing the message to display. |
param2(Optional) | A valid string representing the title to appear in the title bar of the dialog window. To help protect against internet spoofing, the dialog window title begins with the text "Warning: JavaScript Window -". The window title that you specify in this parameter displays after the warning text. |
param3(Optional) | An integer representing the icon to display in the dialog box. - 0 (Error) - This is the default.
- 1 (Warning)
- 2 (Question)
- 3 (Status)
|
param4(Optional) | An integer representing the buttons to display. - 0 (OK) - This is the default.
- 1 (OK, Cancel)
- 2 (Yes, No)
- 3 (Yes, No, Cancel)
|
Returns
A valid integer representing the value of the button pressed by the user:
- 1 (OK)
- 2 (Cancel)
- 3 (No)
- 4 (Yes)