app.Alert( text, title, options, hue );
options can be "NoDim"
----
==== Example - No Title ====
function OnStart()
{
app.Alert( "Hello World!" );
}
==== Example - Title ====
function OnStart()
{
app.Alert( "Hello World!", "Message" );
}