Shows a rotating progress circle indicating that something happens and that the user should keep his extremities with him until the process completed.
Example - Show and Hide Progress
function OnStart()
{
app.ShowProgress( "Loading..." );
setTimeout( "app.HideProgress()", 3000 );
}
from native import app
def OnStart():
app.ShowProgress( "Loading..." )
setTimeout( hideProgress, 3000 )
def hideProgress():
app.HideProgress()