WebAIM - Web Accessibility In Mind

E-mail List Archives

Re: Flash and tabindex

for

From: Stephane Deschamps
Date: Jun 25, 2007 9:40AM


> Enclosed is the sample MXML that JAWS 7.1 seems to be unable to read in
> the right order.

Sorry, the enclosed file was stripped.

Here is the code, copy-pasted:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">

<mx:Script>
<![CDATA[
import mx.accessibility.AccordionHeaderAccImpl;
AccordionHeaderAccImpl.enableAccessibility();
]]>
</mx:Script>
<mx:Text x="10" y="17" text="Ceci est un texte introductif passionnant"
tabIndex="100"/>

<mx:Accordion x="10" y="43" width="200" height="200" tabIndex="200"
tabChildren="true">
<mx:VBox label="RĂ©alisateurs" tabIndex="210" tabChildren="true">
<mx:Label text="Walt Disney" tabIndex="211" />
<mx:Label text="Jean Cocteau" tabIndex="212" />
<mx:Label text="Tim Burton" tabIndex="213" />
</mx:VBox>
<mx:VBox label="Films" tabIndex="220" tabChildren="true">
<mx:Label text="Bambi" tabIndex="221"/>
<mx:Label text="La belle et la bĂȘte" tabIndex="222"/>
<mx:Label text="Edward aux mains d'argent" tabIndex="223"/>
</mx:VBox>
</mx:Accordion>

<mx:List x="227" y="43" width="150" tabIndex="300" tabChildren="true">
<mx:Object label="Blanche neige" data="n0" tabIndex="301"/>
<mx:Object label="Simplet" data="n1" tabIndex="302"/>
<mx:Object label="Prof" data="n2" tabIndex="303"/>
<mx:Object label="Atchoum" data="n3" tabIndex="304"/>
<mx:Object label="Joyeux" data="n4" tabIndex="305"/>
<mx:Object label="Timide" data="n5" tabIndex="306"/>
<mx:Object label="Grincheux" data="n6" tabIndex="307"/>
<mx:Object label="Dormeur" data="n7" tabIndex="308"/>
</mx:List>

</mx:Application>