-- 0
JavaScript syntax example:
if ( sprite(x).busy ) {
trace("busy")
}
offline - Read-only property, indicates if the browser is currently operating in
offline mode. It is generally used to detect if an internet connection is available.
Possible return values are TRUE or FALSE (1 or 0).
Lingo example:
put sprite(x).offline
-- 0
JavaScript syntax example:
if ( sprite(x).offline ) {
trace("no internet connection available")
}
silent - This property can be tested and set. When the browser is in silent mode it
will not display dialog boxes with error messages and warnings to the end user, for
example when a page that contains invalid JavaScript code is loaded. Possible
values are TRUE or FALSE (1 or 0).
Example:
sprite(x).silent = 1
Online Help
19
Comentarios a estos manuales