Back

HideProgress

The HideProgress method hides any previously shown popup progress window which was shown using the app.ShowProgress method.

 app.HideProgress();

Example

function OnStart()
{
  app.ShowProgress( "Loading..." );
  setTimeout( "app.HideProgress()", 3000 );
}
  Copy   Copy All    Run