Stupid question about a similar "ask function"

Is there a function that pop ups a window informing you of something? Just like the "ask function" but without the YES/NO answers, just one "OK" answer. Sorry for the newbish question but i can't find anything on the forum nor in the tutorial/script page. D:

The simple answer is no.

The complicated answer is yes, but you have to use JavaScript/JQuery.
JS.eval("alert('This is a message in a box!')")

The JQuery version looks better, but is more complicated.

Whoa that is weird xD I thought that ofc there was already an implemented function, anyway i think i'll just use Javascript or JQuery for that alert box :) Thanks for the answer :)

Why eval that? This should work:


JS.alert("This is a message in a box!")