Bungee Logic : Statement : Dialog Message
Page Status: Beta
Back to Bungee Logic Statements
Contents |
[edit] Description
Displays a message in a dialog.
Used for notifying the user, obtaining user input, or debugging.
[edit] Syntax
dialog message(message);
Where:
message Is a site designating the text to display in the message.
[edit] Logic
dialog message("Your message goes here");
[edit] Error Handling
-None-
[edit] Intrinsics
-None-
[edit] Properties
- Type — Specifies whether the message is displayed in a popup Dialog, to the Log window, or Both. Default is Dialog.
- DialogType — If Type is set to Dialog or Both, specifies if the dialog is a Message, Confirmation, or Prompt.
- Halt — If Type is set to Dialog or Both, and if checked, the application will stop processing until the dialog is dismissed.
- Log Type — If Type is set to Log or Both, specifies if the message in the log is categorized as Debug, Information, Warning, Error, or Fatal.
- Message — Specifies the text to be displayed.
- Confirmation — If DialogType is set to Confirmation, then specifies where to store the result of the confirmation. This value is a boolean.
- Prompt — If DialogType is set to Prompt, then specifies where to store the result of the prompt. This value is a string.
Tab Title Bar
- Comment Out — Comments out the entire section of code.
- Set Breakpoint — Sets a breakpopint for debugging purposes.