In AS3, the InteractiveObject class has properties related to tab-navigation: tabEnabled and tabIndex. You can set my_mc.tabEnabled = true and Flash Player will automatically determine where in the tab order that clip belongs, or you can specify where it belongs in that order by setting my_mc.tabIndex = someNumber.
You do not have to set tabEnabled to allow tabbing to an object, but if you do set it, it will take precedence. The following example results in a non-tabable movieclip.
my_mc.tabEnabled = false;
my_mc.tabIndex = 1;
But try this: More
my_mc.tabIndex = 1;
trace(my_mc.tabEnabled); //false