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;

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