i've designed a UI in Flash IDE, have exported a lot of the objects for ActionScript, and program the application with an external document class .as file.
in Flash IDE, i don't want any of my sliders or textFields to have accessibility options. i open the Accessibility panel (Window > Other Panels > Accessibility), and with the stage selected i uncheck "Make Movie Accessible". save. compile. runtime error:
~/myCustomClass.as, Line 4 1180: Call to a possibly undefined method AccessibilityProperties.
line 4 is a simple import:
import flash.display.Sprite;
how can i solve this?
UPDATE:
adding the following imports to my .as removes the runtime error:
import flash.accessibility.AccessibilityProperties;
import flash.accessibility.Accessibility;
however, the application still allows tabbing. how can i completely turn off accessibility?
i've tried:
Sprite.prototype.tabEnabled = false;
but this didn't work.