=====ShowProgress===== //(Information and examples taken from the DroidScript documentation)// app.ShowProgress(text, options); ==== Headline ==== ====Description==== The **ShowProgress** method shows a popup progress window with a spinning animation and an optional message. This window will remain visible until app.HideProgress() is called. app.ShowProgress( text ); See also [[built_in:hide_progress|HideProgress]] ===== Options ===== ^ Options ^ Description ^ | NoDim | Set the background transparent | ---- ====Example==== function OnStart() { app.ShowProgress( "Loading..." ); setTimeout( "app.HideProgress()", 3000 ); }