The Accessibility best practices for Flex page from Adobe website list four strategies to enable accessibility :
- Enable accessibility by default for all Flex applications
- Enable accessibility in the Adobe Flex Builder™ 3 project properties
- Enable accessibility for an individual application
- Enable accessibility using the command-line compiler
I test if the accessibility is enabled by checking the value of Accessibility.active
, which is always false in my sample application containing only a datagrid and some buttons, using the four above strategies.
As I'm new to Flex, I don't really know where else I could search to enable it, and no,
Accessibility.active = true;
isn't a solution, as it's a read-only property ;)
Thanks for your help.