This site permanently moved to
https://droidscript.github.io
. Please update links accordingly.
You are being forwarded automatically in 3...
[stay here]
Back
HideProgressBar
Hello World
Hides a previously shown progress bar dialog.
app.HideProgressBar()
See also
ShowProgressBar
,
UpdateProgressBar
.
Example - Progress Bar
click to expand contents
function
OnStart
(
)
{
app
.
ShowProgressBar
(
"Loading..."
)
;
for
(
prog
=
0
;
prog
<
100
;
prog
++
)
app
.
UpdateProgressBar
(
prog
)
;
app
.
HideProgressBar
(
)
;
}
Copy
Copy All
Run
loading