This site permanently moved to
https://droidscript.github.io
. Please update links accordingly.
You are being forwarded automatically in 3...
[stay here]
Back
ToFront
Hello World
Brings the app back to the foreground.
app.ToFront()
See Also:
ToBack
.
Example - Hide and Peek
click to expand contents
function
OnStart
(
)
{
app
.
ToBack
(
)
;
setTimeout
(
"app.ToFront()"
,
5000
)
;
}
function
OnPause
(
)
{
app
.
ShowPopup
(
"OnPause"
)
;
}
function
OnResume
(
)
{
app
.
ShowPopup
(
"OnResume"
)
;
}
Copy All
Run
loading