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

_xscale 59
Description
Property; an integer that sets the x coordinate of a movie clip (represented here by my_mc),
relative to the local coordinates of the parent movie clip. If a movie clip is in the main
timeline, its coordinate system refers to the upper-left corner of the Stage as (0, 0).
If the movie clip is inside another movie clip that has transformations, the movie clip is in
the local coordinate system of the enclosing movie clip. For example, if a movie clip is
rotated 90 degrees counterclockwise, the child movie clips inherit a coordinate system that is
rotated 90 degrees counterclockwise. The movie clip’s coordinates refer to the registration
point position.
Example
The following example changes the horizontal position of the my_mc movie clip when the user
presses the 6 key:
on(keyPress "6") {
my_mc:_x = 10;
}
See also
_xscale, _y, _yscale
_xscale
Availability
Flash Lite 1.0.
Usage
my_mc:_xscale
Description
Property; sets the horizontal scale (percentage) of the movie clip, as applied from the
registration point of the movie clip. The default registration point is (0, 0).
Scaling the local coordinate system affects the
_x and _y property settings, which are defined
in pixels. For example, if the parent movie clip is scaled to 50%, setting the
_x property moves
an object in the movie clip by half of the number of pixels that it would if the movie were set
at 100%.