TextField.tabEnabled
Availability
Flash Player 6.
Usage
my_txt.tabEnabled:Boolean
Description
Property; specifies whether
by default.
If the
tabEnabled
ordering. If the
tabIndex
ordering as well. If
ordering, even if the
Example
The following example creates several text fields, called
. The
four_txt
three_txt
from the automatic tab ordering.
this.createTextField("one_txt", this.getNextHighestDepth(), 10, 10, 100, 22);
one_txt.border = true;
one_txt.type = "input";
this.createTextField("two_txt", this.getNextHighestDepth(), 10, 40, 100, 22);
two_txt.border = true;
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";
three_txt.tabEnabled = false;
three_txt.text = "tabEnabled = false;";
See also
MovieClip.tabEnabled
TextField.tabIndex
Availability
Flash Player 6.
Usage
my_txt.tabIndex:Number
is included in automatic tab ordering. It is
my_txt
property is
undefined
property is also set to a value, the object is included in custom tab
is
, the object is not included in automatic or custom tab
tabEnabled
false
property is set.
tabIndex
text field has the
or
, the object is included in automatic tab
true
one_txt
property set to
tabEnabled
undefined
,
,
two_txt
three_txt
, so it is excluded
false
TextField.tabIndex
and
753
Need help?
Do you have a question about the FLEX-FLEX ACTIONSCRIPT LANGUAGE and is the answer not in the manual?