This site permanently moved to
https://droidscript.github.io
. Please update links accordingly.
You are being forwarded automatically in 3...
[stay here]
Back
IsStarted
Hello World
Checks if the app has finished loading.
app.IsStarted() →
Boolean
It will return true after OnStart has returned.
Example - Check Started
click to expand contents
setTimeout
(
'app.Alert( app.IsStarted(), "Started in global:" );'
)
;
function
OnStart
(
)
{
var
started
=
app
.
IsStarted
(
)
;
app
.
Alert
(
started
,
"Started in OnStart:"
)
;
}
Copy
Copy All
Run
loading