The flash documentation says about focusEnabled property for an mc:

'Property; if the value is undefined or false, a movie clip cannot receive input focus unless it is a button. If the focusEnabled property value is true, a movie clip can receive input focus even if it is not a button.'

and for _focusrect it says:

'Property; a Boolean value that specifies whether a movie clip has a yellow rectangle around it when it has keyboard focus.'

Now my question is I have a movieclip my_mc on stage and the following actions on the first and only frame of the root timeline:

Code:
my_mc.focusEnabled = true;
my_mc._focusrect = true;


my question is when I view this in a browser, and after i click the swf (to give the swf focus) and then click the tab key, why doesnt a yellow rectangle appear around the movieclip?

Thanks in advance for yoru feedback..