The
property must be a positive integer. The objects are ordered according to their
tabIndex
properties, in ascending order. An object with a
tabIndex
object with a
tabIndex
relationships of objects in a SWF file. All objects in the SWF file with
are placed in the tab order. Do not use the same
Availability: ActionScript 1.0; Flash Player 6
Example
The following ActionScript sets a custom tab order for three movie clip instances.
myMC1_mc.onRelease = function() {};
myMC2_mc.onRelease = function() {};
myMC3_mc.onRelease = function() {};
myMC1_mc.tabIndex = 2;
myMC2_mc.tabIndex = 1;
myMC3_mc.tabIndex = 3;
See also
tabIndex (Button.tabIndex property)
_target (MovieClip._target property)
public _target : String [read-only]
Returns the target path of the movie clip instance, in slash notation. Use the
to convert the target path to dot notation.
Availability: ActionScript 1.0; Flash Player 4
Example
The following example displays the target paths of movie clip instances in a SWF file, in both
slash and dot notation.
for (var i in this) {
if (typeof (this[i]) == "movieclip") {
trace("name: " + this[i]._name + ",\t target: " + this[i]._target + ",\t
target(2):"
+ eval(this[i]._target));
}
}
value of
. The custom tab ordering disregards the hierarchical
2
,
tabIndex (TextField.tabIndex property)
value of
tabIndex
value for multiple objects.
tabIndex
precedes an
1
properties
tabIndex
function
eval()
MovieClip
931
Need help?
Do you have a question about the FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE and is the answer not in the manual?