User Guide

Table Of Contents
50 Flash Lite Properties
Example
The following example uses the _currentframe property and the gotoAndStop() function
to direct the playhead of the
my_mc movie clip to advance five frames ahead of its current
location:
tellTarget("my_mc") {
gotoAndStop(_currentframe + 5);
}
See also
gotoAndStop()
_focusrect
Availability
Flash Lite 1.0.
Usage
_focusrect = Boolean;
Description
Property (global); specifies whether a yellow rectangle appears around the button or text field
that has the current focus. The default value,
true, displays a yellow rectangle around the
currently focused button or text field as the user presses the Up or Down Arrow keys on their
phone or mobile device to navigate through objects in a SWF file. Specify
false if you do not
want the yellow rectangle to appear.
Example
The following example disables the yellow focus rectangle from appearing in the application:
_focusrect = false;