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

fscommand2() 153
The following table shows what effect each mode has, and what modes are substituted:
Example
The following line of code sets the input text type of the field associated with the input1
variable to receive numeric data:
status = fscommand2("SetInputTextType", "input1", "Numeric");
SetQuality
Availability
Flash Lite 1.1.
Description
Sets the quality of the rendering of the animation.
Example
The following example sets the rendering quality to low:
status = fscommand2("SetQuality", "low");
Mode
specified
Sets the FEP to one of these mutually
exclusive modes
If not supported on
current device, opens
the FEP in this mode
Numeric Numbers only (0 to 9) Alphanumeric
Alpha Alphabetic characters only (A to Z, a to z) Alphanumeric
Alphanumeric Alphanumeric characters only (0 to 9, A to Z,
a to z)
Latin
Latin Latin characters only (alphanumeric and
punctuation)
NoRestriction
NonLatin Non-Latin characters only (for example, Kanji
and Kana)
NoRestriction
NoRestriction Default mode (sets no restriction on the FEP)
NOTE
Not all mobile phones support these input text field types. For this reason, you must
validate the input text data.
Command Parameters Value returned
"SetQuality"
quality
The rendering quality; must be
"high", "medium", or "low".
-1: Not supported.
0: Supported.