User Guide

Table Of Contents
58 Flash Lite Properties
Example
The following code disables the my_mc movie clip when the user presses the 3 key, and enables
it when the user presses the 4 key:
on(keyPress "3") {
my_mc:_visible = 0;
}
on(keyPress "4") {
my_mc:_visible = 1;
}
_width
Availability
Flash Lite 1.0.
Usage
my_mc:_width
Description
Property; the width of the movie clip, in pixels.
Example
The following example sets the width properties of a movie clip when the user presses the
5 key:
on(keyPress "5") {
my_mc:_width = 10;
}
_x
Availability
Flash Lite 1.0.
Usage
my_mc:_x