// // This example shows how to display an input message box // void ScriptMain() { int i = Dialog.ShowInputDialog("Enter an integer"); Dialog.ShowDialog("Hi, the number you entered is " + i); if(Dialog.ShowOkCancelDialog("Do you want to continue (OK) or cancel ")) Dialog.ShowDialog("OK let's continue"); else Dialog.ShowDialog("OK let's cancel"); }