chaals, I am requesting methodology for more general keyboard control such as say space bar in this example.
my suggestion being: end="charCode(32)" as in: <animate attributeName="r" to="0.00%" end="charCode(32)" /> regards Jonathan Chetwynd Accessibility Consultant on Media Literacy and the Internet from previous email, >as you may know the major browsers now provide keyboard navigation > using tab key or similar. > could someone demonstrate how to create test cases for more general > keyboard control? On 28 Sep 2007, at 02:37, Charles McCathieNevile wrote: On Thu, 27 Sep 2007 18:50:24 +1000, ~:'' ありがとうございま した。 <[EMAIL PROTECTED]> wrote: > declarative animation & keyboard events: end="charCode(32)" > > as you may know the major browsers now provide keyboard navigation > using tab key or similar. > could someone demonstrate how to create test cases for more general > keyboard control? > > eg end="mouseover" is defined, but is there something similar to > end="charCode(32)" for those that use keyboard input? focus and blur? Try the following (works for me in last week's Opera alpha but haven't tested it anywhere else yet): <?xml version="1.0" ?> <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"> <circle cx="200" cy="550" r="140" fill="green"> <set attributeName="r" to="0.00" begin="focus" dur="2s" end="blur" /> </circle> <circle cx="700" cy="550" r="14%" fill="red"> <animate attributeName="r" to="0.00%" begin="focus" dur="2s" end="blur,mouseout" /> </circle> </svg> > how does the SVG1.2 propose handling keyboard event in declarative > animation? > I read what I could find and am none the wiser ~:" cheers Chaals -- Charles McCathieNevile, Opera Software: Standards Group hablo español - je parle français - jeg lærer norsk [EMAIL PROTECTED] http://snapshot.opera.com - Kestrel (9.5α1) ----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ---- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/svg-developers/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

