show_message

Displays a pop-up message.

Syntax:

show_message(str);


Argument Description
str The string to show in the pop-up message.


Returns: N/A


Description

This function creates a pop-up message box which displays the string defined in the code and a button marked "Ok" to close it.

NOTE: THIS FUNCTION IS FOR DEBUG USE ONLY.


Example:

var i, tot;
tot = 0;
for (i = 0; i < 10; i += 1)
   {
   tot += inv[i];
   }
show_message("Total = " + string(tot));

The above code will loop through the values stored in the array "inv" and add them to the variable "tot" before showing a message with the total.


Back: Debugging
Next: show_question
© Copyright YoYo Games Ltd. 2018 All Rights Reserved