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

9
1
CHAPTER 1
Flash Lite Global Functions
This section describes the syntax and use of the Macromedia Flash Lite 1.1 ActionScript
global functions. It includes the following functions:
Function Description
call()
Executes the script in the called frame without moving the playhead
to that frame.
chr()
Converts ASCII code numbers to characters.
duplicateMovieClip()
Creates an instance of a movie clip while the SWF file plays.
eval ()
Accesses variables, properties, objects, or movie clips by name.
getProperty()
Returns the value of the specified property for the specified
movie clip.
getTimer()
Returns the number of milliseconds that elapsed since the SWF file
started playing.
getURL()
Loads a document from a specific URL into a window or passes
variables to another application at a defined URL.
gotoAndPlay()
Sends the playhead to the specified frame in a scene and begins
playing from that frame. If no scene is specified, the playhead moves
to the specified frame in the current scene.
gotoAndStop()
Sends the playhead to the specified frame in a scene and stops it. If
no scene is specified, the playhead is sent to the frame in the
current scene.
ifFrameLoaded()
Checks whether the contents of a specific frame are available locally.
int()
Truncates a decimal number to an integer value.
length()
Returns the number of characters of the specified string or
variable name.
loadMovie()
Loads a SWF file into Flash Lite while the original SWF file plays.
loadMovieNum()
Loads a SWF file into a level in Flash Lite while the originally loaded
SWF file plays.