Why the tab key don't send the focus to my mc?
Whar I have is 4 textfields and 1 mc (may not be a button) that
need to receive the focus to allow that's the enter button work...
code:

text1.tabIndex = 0;
text2.tabIndex = 1;
text3.tabIndex = 2;
text4.tabIndex = 3;
mc.tabIndex = 5;
mc.tabEnabled = true;


somebody help me, please