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

10 Flash Lite Global Functions
loadVariables()
Reads data from an external file, such as a text file or text generated
by a ColdFusion, CGI ASP, PHP, or Perl script, and sets the values
for variables in a Flash Lite level. This function can also update
variables in the active SWF file with new values.
loadVariablesNum()
Reads data from an external file, such as a text file or text generated
by a ColdFusion, CGI, ASP, PHP, or Perl script, and sets the values
for variables in a Flash Lite level. This function can also update
variables in the active SWF file with new values.
mbchr()
Converts an ASCII code number to a multibyte character.
mblength()
Returns the length of the multibyte character string.
mbord()
Converts the specified character to a multibyte number.
mbsubstring()
Extracts a new multibyte character string from a multibyte
character string.
nextFrame()
Sends the playhead to the next frame and stops it.
nextScene()
Sends the playhead to Frame 1 of the next scene and stops it.
Number()
Converts an expression to a number and returns a value.
on()
Specifies the user event or keypress that triggers an event.
ord()
Converts characters to ASCII code numbers.
play()
Moves the playhead forward in the timeline.
prevFrame()
Sends the playhead to the previous frame and stops it. If the current
frame is Frame 1, the playhead does not move.
prevScene()
Sends the playhead to Frame 1 of the previous scene and stops it.
removeMovieClip()
Deletes the specified movie clip that was originally created using
duplicateMovieClip().
set()
Assigns a value to a variable.
setProperty()
Changes a property value of a movie clip as the movie plays.
stop()
Stops the SWF file that is currently playing.
stopAllSounds()
Stops all sounds currently playing in a SWF file without stopping
the playhead.
String()
Returns a string representation of the specified parameter.
substring()
Extracts part of a string.
tellTarget()
Applies the instructions specified in the statement(s) parameter to
the timeline specified in the target parameter.
Function Description