Tab Index and Scroll Pane Component

I’ve been doing searches on tabIndex and tabEnabled, but haven’t turned up an answer to this. I am using a scroll pane component. The movie it links to dynamically attaches a series of mcs (using attachMovieClip). Each of these movie clips in turn has has a series of Input Text fields.

I would like to be able to tab between text fields, but hitting the tab key sets the focus to other places (buttons on the stage or some element within the scroll pane component itself) but never to the text fields. I have given them instance names and used tabIndex = *somenumber *and this has not helped.

Is there some confilct between using a scroll plane component and tabEnabled text fields? Is there a way to get this to work?

Any insight would be appreciated.

Okay, on further review . . . I found this reference on the Macromedia website:

Focus Manager TechNote

As I understand it the use of a component forces you to tell flash what items to “see” as tab enabled using tabEnabled and tabChildren. tabChildren is what I was missing.

I had to specify mycomponent.tabChildren = true; and mycomponent.tabEnabled=false; I also specified that each container movie clip’s tabChildren = true but tabEnabled = false;