|
|
|
[
Permlink
| « Hide
]
David Gofman - [02/27/08 06:51 PM ]
I tried to applied event.target.setFocus(); on the end. Working well if I will use mx:Button component, but not for Chart series?????????
<mx:Button label="Mouse Over ME!!!" mouseOver="say(event, 'Button bla bla bla')"/>
I believe this is a duplicate of
Maybe my bug related to
So, I would like to initialize only one/global accessibility listener (function) and pass argument for announce via JAWS 9.0 If any workarounds available for this case?
<?xml version="1.0"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="onComplete()"> <mx:Script> <![CDATA[ private function onComplete():void{ accessibilityProperties = new AccessibilityProperties(); function now():void{ accessibilityProperties.description = lbl.text = new Date().toLocaleTimeString(); }; setInterval(now, 5000); now(); } ]]> </mx:Script> <mx:Label id="lbl"/> </mx:Application> David - Here's the page that explains the accessibility of different Flex components:
http://livedocs.adobe.com/flex/3/html/help.html?content=accessible_5.html For the case you have in the above comment, it is the same as bug For your attached test.mxml, based on the documentation I don't think this should work. "You can attach an AccessibilityProperties object to any display object, but Flash Player will read your AccessibilityProperties object only for certain kinds of objects: entire SWF files (as represented by DisplayObject.root), container objects (DisplayObjectContainer and subclasses), buttons (SimpleButton and subclasses), and text (TextField and subclasses)."
This page shows all the Flex 3 components supported by Accessibility: http://livedocs.adobe.com/flex/3/html/help.html?content=accessible_5.html and the charting components are not included in the list. Hi Joann. Again you didn't get my point. I don't what to assign to any form object. I would like to create a global function to pronounce my text from every where and when I want!!! Example what I gave you very simple: Every 5 seconds I would like to here "Now is 5 hours 45 minutes 10 seconds", "Now is 5 hours 45 minutes 15 seconds", "Now is 5 hours 45 minutes 20 seconds" ...
Hi Joann. Again you didn't get my point. I don't what to assign AccessibilityProperties to any form objects. I would like to create a global function to pronounce my text from every where and when I want!!! Example what I gave you very simple: Every 5 seconds I would like to hear "Now is 5 hours 45 minutes 10 seconds", "Now is 5 hours 45 minutes 15 seconds", "Now is 5 hours 45 minutes 20 seconds" ...
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||