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

79
== (numeric
equality)
Tests for equality; if expression1 is equal to expression2 , the result
is
true.
> (numeric greater
than)
Compares two expressions and determines whether expression1 is
greater than
expression2 ; if it is, the operator returns true. If
expression1 is less than or equal to expression2 , the operator
returns
false.
>= (numeric greater
than or equal to)
Compares two expressions and determines whether expression1 is
greater than or equal to
expression2 (true) or whether expression1 is
less than
expression2 (false).
<> (numeric
inequality)
Tests for inequality; if expression1 is equal to expression2 , the result
is
false.
< (numeric less
than)
Compares two expressions and determines whether expression1 is
less than
expression2 ; if so, the operator returns true. If expression1
is greater than or equal to
expression2, the operator returns false.
<= (numeric less
than or equal to)
Compares two expressions and determines whether expression1 is
less than or equal to
expression2. If it is, the operator returns true;
otherwise, it returns
false.
() (parentheses)
Groups one or more parameters, performs sequential evaluation of
expressions, or surrounds one or more parameters and passes them
as parameters to a function outside the parentheses.
" " (string
delimiter)
When used before and after a sequence of zero or more characters,
quotation marks indicate that the characters have a literal value and
are considered a
string; they are not a variable, numeric value, or
other ActionScript element.
eq (string equality)
Compares two expressions for equality and returns true if the string
representation of
expression1 is equal to the string representation of
expression2; otherwise, the operation returns false.
gt (string greater
than)
Compares the string representation of expression1 to the string
representation of
expression2 and returns true if expression1 is
greater than
expression2; otherwise, it returns false.
ge (string greater
than or equal to)
Compares the string representation of expression1 to the string
representation of
expression2 and returns a true value if expression1
is greater than or equal to
expression2; otherwise, it returns false.
ne (string
inequality)
Compares the string representations of expression1 to expression2
and returns
true if expression1 is not equal to expression2; otherwise,
it returns
false.
Operator Description