Back
IsDebugging
Hello World
Checks if the app is currently debugging.
app.IsDebugging() →
Boolean
See also
SetDebug
,
Debug
Example - Check Debugging
function
OnStart
(
)
{
var
isDbg
=
app
.
IsDebugging
(
)
;
app
.
Alert
(
isDbg
,
"now debugging:"
)
;
}
Copy
Copy All
Run