User Guide

1216 ActionScript classes
two_txt.type = "input";
this.createTextField("three_txt", this.getNextHighestDepth(), 10, 70, 100,
22);
three_txt.border = true;
three_txt.type = "input";
this.createTextField("four_txt", this.getNextHighestDepth(), 10, 100, 100,
22);
four_txt.border = true;
four_txt.type = "input";
one_txt.tabIndex = 3;
two_txt.tabIndex = 1;
three_txt.tabIndex = 2;
four_txt.tabIndex = 4;
The MovieClip.getNextHighestDepth() method used in this example requires Flash Player
7 or later. If your SWF file includes a version 2 component, use the version 2 components
DepthManager class instead of the
MovieClip.getNextHighestDepth() method.
See also
tabIndex (Button.tabIndex property), tabIndex (MovieClip.tabIndex property)
_target (TextField._target property)
public _target : String [read-only]
The target path of the text field instance. The _self target specifies the current frame in the
current window,
_blank specifies a new window, _parent specifies the parent of the current
frame, and
_top specifies the top-level frame in the current window.
Availability: ActionScript 1.0; Flash Player 6
Example
The following ActionScript creates a text field called
my_txt and outputs the target path of
the new field, in both slash and dot notation.
this.createTextField("my_txt", this.getNextHighestDepth(), 10, 10, 100,
22);
trace(my_txt._target); // output: /my_txt
trace(eval(my_txt._target)); // output: _level0.my_txt
The MovieClip.getNextHighestDepth() method used in this example requires Flash Player
7 or later. If your SWF file includes a version 2 component, use the version 2 components
DepthManager class instead of the
MovieClip.getNextHighestDepth() method.