===== 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 [[built_in:show_progress|ShowProgress]]
----
==== Example ====
function OnStart()
{
app.ShowProgress( "Loading..." );
setTimeout( "app.HideProgress()", 3000 );
}