BE_DialogDisplay
BE_DialogDisplay ( title ; message ; defaultButton { ; cancelButton ; alternateButton } )
Puts up a dialog almost exactly the same as the one that you can get with the Show Custom Dialog script step, minus the fields. Use this function when you want to display a dialog from a calculation instead of a script step.
Version : 1.0
4.0.2 : Renamed from BE_DisplayDialog
Parameters :
- title : the dialog title.
- message : the content of the dialog.
- defaultButton : required - the left most button text.
- cancelButton ( optional ) : when empty or not included this button will not be shown.
- alternateButton ( optional ) : when empty or not included this button will not be shown.
Result : A number corresponding to which button is pressed : 1= defaultButton, 2= cancelButton, 3= alternateButton.