This site permanently moved to
https://droidscript.github.io
. Please update links accordingly.
You are being forwarded automatically in 3...
[stay here]
Back
HideProgress
JS
Py
Hello World
Hides a previously shown progress indicator.
app.HideProgress()
See also
ShowProgress
.
Example - Show and Hide Progress
click to expand contents
function
OnStart
(
)
{
app
.
ShowProgress
(
"Loading..."
)
;
setTimeout
(
"app.HideProgress()"
,
3000
)
;
}
from
native
import
app
def
OnStart
(
)
:
app
.
ShowProgress
(
"Loading..."
)
app
.
SetTimeout
(
"app.HideProgress()"
,
3000
)
Copy
Copy All
Run
loading