MACROMEDIA FLEX-FLEX ACTIONSCRIPT LANGUAGE Reference page 740

Actionscript language reference
Table of Contents

Advertisement

Returns
Nothing.
Description
Event handler; invoked when a text field receives keyboard focus. The
object that loses the focus. For example, if the user presses the Tab key to move the input focus
from a button to a text field,
If there is no previously focused object,
Example
See the example for
See Also
TextField.onKillFocus
TextField._parent
Availability
Flash Player 6.
Usage
my_txt._parent.property
_parent.property
Description
Property; a reference to the movie clip or object that contains the current text field or object. The
current object is the one containing the ActionScript code that references
Use
to specify a relative path to movie clips or objects that are above the current text
_parent
field. You can use
_parent._parent._alpha = 20;
Example
The following ActionScript creates two text fields and outputs information about the
each object. The first text field,
field,
second_txt
this.createTextField("first_txt", this.getNextHighestDepth(), 10, 10, 160,
22);
first_txt.border = true;
trace(first_txt._name+"'s _parent is: "+first_txt._parent);
this.createEmptyMovieClip("holder_mc", this.getNextHighestDepth());
holder_mc.createTextField("second_txt", holder_mc.getNextHighestDepth(), 10,
40, 160, 22);
holder_mc.second_txt.border = true;
trace(holder_mc.second_txt._name+"'s _parent is:
"+holder_mc.second_txt._parent);
740
Chapter 7: ActionScript for Flash
contains the text field instance.
oldFocus
oldFocus
TextField.onKillFocus
to climb up multiple levels in the display list as in the following:
_parent
first_txt
, is created inside the movie clip called
contains a
null
.
, is created on the main Timeline. The second text
holder_mc
parameter is the
oldFocus
value.
.
_parent
_parent
.
of

Advertisement

Table of Contents
loading

This manual is also suitable for:

Flex

Table of Contents