Constants; False Constant - MACROMEDIA FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE Reference

Flash lite 2.x actionscript language reference
Hide thumbs Also See for FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE:
Table of Contents

Advertisement

Constants

A constant is a variable used to represent a property whose value never changes. This section
describes global constants that are available to every script.
Constants summary
Modifiers
Constant
false
Infinity
-Infinity
NaN
newline
null
true
undefined

false constant

A unique Boolean value that represents the opposite of
When automatic data typing converts
to a string, it becomes
false
Availability: ActionScript 1.0; Flash Lite 1.1
Description
A unique Boolean value that represents the
opposite of true.
Specifies the IEEE-754 value representing
positive infinity.
Specifies the IEEE-754 value representing
negative infinity.
A predefined variable with the IEEE-754 value for
NaN (not a number).
Inserts a carriage return character (\r) that
generates a blank line in text output generated by
your code.
A special value that can be assigned to variables or
returned by a function if no data was provided.
A unique Boolean value that represents the
opposite of false.
A special value, usually used to indicate that a
variable has not yet been assigned a value.
to a number, it becomes 0; when it converts
false
.
"false"
.
true
Constants
27

Advertisement

Table of Contents
loading

Table of Contents