Back

ShowProgress

JS Py
Hello World

Shows a rotating progress circle indicating that something happens and that the user should keep his extremities with him until the process completed.

app.ShowProgress( message?, options? )

Example - Show and Hide Progress

function OnStart()
{
    app.ShowProgress( "Loading..." );
    setTimeout( "app.HideProgress()", 3000 );

}
from native import app

def OnStart():
    app.ShowProgress( "Loading..." )
    setTimeout( hideProgress, 3000 )

def hideProgress():
    app.HideProgress()
    Copy     Copy All       Run      
String
String: comma “,” separated: NoDim, NonModal, Solid