Table of Contents

HideProgress

(Information and examples taken from the DroidScript documentation)

Description

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

 app.HideProgress();

See also ShowProgress


Example

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