Back

ShowPopup

ShowPopup shows a popup message on the screen for a few seconds which then fades away.

app.ShowPopup( message, options )

Example - Top



function OnStart()
{
    app.ShowPopup( "Hello World!" );
}
    Copy     Copy All       Run      

Example - Bottom



function OnStart()
{
    app.ShowPopup( "Hello World!", "Bottom,Short" );
}
    Copy     Copy All       Run      

string
string - "top" or "bottom" or "short" or "?"