0

Message Box

Hi, it would be useful to have a function that open a popup message like: choice := MessageBox("Confirm your operation", logicValueReturn) or symply MessageBox("Now print it out")

Thanks

3replies Oldest first
  • Oldest first
  • Newest first
  • Active threads
  • Popular
  • You can use:

    alert("Hello World!")

    Like
  • Or if you want a dialog box that let's you make a choice, you can use;

    let check := dialog("Create Record", "New record will be created. Please confirm.", ["Continue", "Cancel"]);
    if check = "Cancel" then delete this else void

    Like
  • essentially you are just using the dialog() function to obtain a choice from the user, and then saving that choice as variable "check" and then taking a certain action based on what value was saved to the variable "check"

    Like
Like Follow
  • 4 yrs agoLast active
  • 3Replies
  • 2988Views