Accessible Multimedia

Jason Morningstar

UNC Chapel Hill | ITS Communications | Web Services

Goals

Barriers to Accessibility

Equivalent Content

Text and Audio

The Accessibility Panel

Accessibility Panel, continued

Buttons

Buttons, continued

Keyboard Focus

Keyboard Focus, continued

Hiding Flash

To hide Flash content from both Web browser and screen readers, add the WMODE option to both the OBJECT and EMBED tags of your the Web page containing the Flash movie. Here’s the relevant code:

< OBJECT ... >
< PARAM NAME="wmode" VALUE="opaque" >
< EMBED wmode=opaque ... >
< /EMBED >
< /OBJECT >

Only use this in the movie does not convey important content or if an alternative is provided for the content the movie does contain.

Reading Order

With ActionScript, you can specify a specific tab order for form, button, and movie clip elements inside your Flash movie. If you want to specify the tab order of text within your movie, you must convert the text to a dynamic text object. To specify a tab order, each object that will be in the tab order must be given a unique instance name. This is added by selecting the item on the stage and typing the name into the Instance Name box on the Properties panel. Now add tabIndex information to a keyframe at frame 1 of your movie:

_root.Homepage.tabIndex = 1
_root.Contact.tabIndex = 2
_root.FirstName.tabIndex = 3
_root.LastName.tabIndex = 4
_root.SubmitButton.tabIndex = 5

Reading Order, continued

Captioning Software

Captioning Providers

Transcript Providers

CART

Handy Links