RE: [Flashcoders] Tab accessibility of buttons within dynamically displayed movie clip

2009-04-28 Thread Paul Steven
Just in case anyone else experiences problem with the tab index property set in the accessibility panel not working properly, I found that setting the tab index with code seemed to do the trick E.g instructionsBtn.tabIndex = 1; selectBtn.tabIndex = 2; highscoresBtn.tabIndex = 3;

[Flashcoders] Tab accessibility of buttons within dynamically displayed movie clip

2009-04-27 Thread Paul Steven
I am trying to ensure all the buttons in my movie are accessible with the keyboard only and have run into a problem where several buttons within a movie clip that is dynamically displayed are not being highlighted by the tab. Basically I have 2 buttons on screen that are placed via the

Re: [Flashcoders] Tab accessibility of buttons within dynamically displayed movie clip

2009-04-27 Thread Weyert de Boer
Did you enable tabChildren on the dynamically displayed movieclip? myClip.tabChildren = true ? tabChildren : Boolean Determines whether the children of the object are tab enabled. tabEnabled : Boolean Specifies whether this object is in the tab order. Yours, Weyert de Boer On 27/04/2009, at

RE: [Flashcoders] Tab accessibility of buttons within dynamically displayed movie clip

2009-04-27 Thread Paul Steven
] On Behalf Of Weyert de Boer Sent: 27 April 2009 11:04 To: Flash Coders List Subject: Re: [Flashcoders] Tab accessibility of buttons within dynamically displayed movie clip Did you enable tabChildren on the dynamically displayed movieclip? myClip.tabChildren = true ? tabChildren : Boolean Determines

RE: [Flashcoders] Tab accessibility of buttons within dynamically displayed movie clip

2009-04-27 Thread Paul Steven
] On Behalf Of Weyert de Boer Sent: 27 April 2009 11:04 To: Flash Coders List Subject: Re: [Flashcoders] Tab accessibility of buttons within dynamically displayed movie clip Did you enable tabChildren on the dynamically displayed movieclip? myClip.tabChildren = true ? tabChildren : Boolean