Back

HideProgress

JS Py
Hello World

Hides a previously shown progress indicator.

app.HideProgress()

See also ShowProgress.

Example - Show and Hide Progress

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

}
from native import app

def OnStart():
    app.ShowProgress("Loading...")
    app.SetTimeout("app.HideProgress()", 3000)
    Copy     Copy All       Run