By default, Flex accessibility features are not enabled. When you enable accessibility, you enable the application to communicate with a screen reader.
Use one of the following methods to enable accessibility:
To enable accessibility for all Flex applications, edit the flex-config.xml file to set the accessible property to true, as the following example shows:
<compiler>
…
<accessible>true</accessible>
…
<compiler>
Enable accessibility in the Adobe Flex Builder™ project properties.
If you are using Adobe Flex Builder software to develop Flex applications, you can inform the compiler to enable accessibility by selecting the "Generate accessible SWF file" option in the Flex Compiler section of the project properties dialog box.

The impact of selecting this option is that the compiler node within the .actionScriptProperties file located in the project directory will be modified to indicate the need for accessible SWF file generation.
<compiler additionalCompilerArguments="-locale en_US"
generateAccessible="true"> …
Enable accessibility using the command-line compiler.
When you compile a file using the mxmlc command-line compiler, you can use a configuration variable to notify the compiler to generate the SWF file with accessibility enabled. The command-line syntax for the mxmlc.exe compiler allows the addition of –compiler.accessible (or just –accessible) to enable accessibility, as shown in the following examples:
mxmlc –compiler.accessible c:/dev/myapps/ appl.mxml
mxmlc -accessible c:/dev/myapps/appl.mxml
For more information on the command-line compiler, see Using the Flex Compilers.
If you edited the flex-config.xml file to enable accessibility by default, you can disable it for an individual request by setting the accessible query parameter to false, as the following example shows:
http://www.mycompany.com/myflexapp/app1.mxml?accessible=false
For more information on the command-line compiler, see Using the Flex Compilers.
To use the JAWS screen reader with a Flex application, users must download scripts from the Adobe accessibility website before invoking a Flex application. Screen readers work best when in Forms mode, which lets users interact directly with the Flex application. These scripts let users switch between Virtual Cursor mode and Forms mode by using the Enter key from almost anywhere within a Flex application. If necessary, users can exit Forms mode by using the standard JAWS keystrokes.
Users can download these scripts, and the installation instructions, from the Adobe website at www.adobe.com/go/flex_accessibility.
To verify that the Flex scripts for JAWS are correctly installed, users can press the Insert+Q keys when JAWS is running. If the scripts are installed correctly, users hear "Updated for Adobe Flex 1.5 and 2" in the voice response to this keystroke.
It is important that you direct users with visual impairments to the script download page so that they have the necessary scripts to use JAWS effectively.