User Guide
Table Of Contents
- Contents
- Flash Lite Global Functions
- call()
- chr()
- duplicateMovieClip()
- eval ()
- getProperty()
- getTimer()
- getURL()
- gotoAndPlay()
- gotoAndStop()
- ifFrameLoaded()
- int()
- length()
- loadMovie()
- loadMovieNum()
- loadVariables()
- loadVariablesNum()
- mbchr()
- mblength()
- mbord()
- mbsubstring()
- nextFrame()
- nextScene()
- Number()
- on()
- ord()
- play()
- prevFrame()
- prevScene()
- random()
- removeMovieClip()
- set()
- setProperty()
- stop()
- stopAllSounds()
- String()
- substring()
- tellTarget()
- toggleHighQuality()
- trace()
- unloadMovie()
- unloadMovieNum()
- Flash Lite Properties
- Flash Lite Statements
- Flash Lite Operators
- add (string concatenation)
- += (addition assignment)
- and
- = (assignment)
- /* (block comment)
- , (comma)
- // (comment)
- ?: (conditional)
- -- (decrement)
- / (divide)
- /= (division assignment)
- . (dot)
- ++ (increment)
- && (logical AND)
- ! (logical NOT)
- || (logical OR)
- % (modulo)
- %= (modulo assignment)
- *= (multiplication assignment)
- * (multiply)
- + (numeric add)
- == (numeric equality)
- > (numeric greater than)
- >= (numeric greater than or equal to)
- <> (numeric inequality)
- < (numeric less than)
- <= (numeric less than or equal to)
- () (parentheses)
- " " (string delimiter)
- eq (string equality)
- gt (string greater than)
- ge (string greater than or equal to)
- ne (string inequality)
- lt (string less than)
- le (string less than or equal to)
- - (subtract)
- -= (subtraction assignment)
- Flash Lite Specific Language Elements
- Capabilities
- fscommand()
- fscommand2()
- Escape
- FullScreen
- GetBatteryLevel
- GetDateDay
- GetDateMonth
- GetDateWeekday
- GetDateYear
- GetDevice
- GetDeviceID
- GetFreePlayerMemory
- GetLanguage
- GetLocaleLongDate
- GetLocaleShortDate
- GetLocaleTime
- GetMaxBatteryLevel
- GetMaxSignalLevel
- GetMaxVolumeLevel
- GetNetworkConnectStatus
- GetNetworkName
- GetNetworkRequestStatus
- GetNetworkStatus
- GetPlatform
- GetPowerSource
- GetSignalLevel
- GetTimeHours
- GetTimeMinutes
- GetTimeSeconds
- GetTimeZoneOffset
- GetTotalPlayerMemory
- GetVolumeLevel
- Quit
- ResetSoftKeys
- SetInputTextType
- SetQuality
- SetSoftKeys
- StartVibrate
- StopVibrate
- Unescape

77
4
CHAPTER 4
Flash Lite Operators
This section describes the syntax and use of the Macromedia Flash Lite 1.x ActionScript
operators. All entries are listed alphabetically. However, some operators are symbols and are
alphabetized by their text descriptions.
The operators in this section are summarized in the following table:
Operator Description
add (string
concatenation)
Concatenates (combines) two or more strings.
+= (addition
assignment)
Assigns expression1 the value of expression1 + expression2.
and
Performs a logical AND operation.
= (assignment)
Assigns the value of expression2 (the operand on the right) to the
variable or property in
expression1.
/* (block comment)
Indicates one or more lines of script comments. Any characters that
appear between the opening comment tag (/*) and the closing
comment tag (*/) are interpreted as a comment and ignored by the
ActionScript interpreter.
, (comma)
Evaluates expression1, then expression2, and returns the value
of
expression2.
// (comment)
Indicates the beginning of a script comment. Any characters that
appear between the comment delimiter (//) and the end-of-line
character are interpreted as a comment and ignored by the
ActionScript interpreter.
?: (conditional)
Instructs Flash Lite to evaluate expression1, and if the value of
expression1 is true, the operator returns the value of expression2;
otherwise, it returns the value of
expression3.