Giter Club home page Giter Club logo

Comments (5)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 17, 2024
JAWS8 and up combined with JAB 2 is able to read security warning messages, but 
there are still issues:

- once the "details" button gets focus, it seems currently impossible to 
navigate ("tab") out of the applet (IE8 / FF 3.3)

- it seems that setText() on JLabel is not enough: updating the text does not 
warn the reader (JAWS 10) (issue with bridge ?), one has to code 
getAccessibleContext().setAccessibleName()

- some labels / messages may need some tweaking (ending with ..., or >>>, Jaws 
reads it literaly)


Original comment by [email protected] on 13 Jul 2010 at 11:29

from eid-applet.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 17, 2024
[deleted comment]

from eid-applet.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 17, 2024
JAWS 11 does read the warnings automatically in FireFox 3.6.x, but not in IE 8 
(in IE one has to press Insert-B, there seems to be no setting that overrides 
this behavior)

JAWS uses another script for IE 8 than for FF, and the FocusChangedEvent() is 
slightly different, one workaround would be to load a custom script when the 
eID applet is detected.
Unfortunately JAWS' GetAppletName() does not seem to work in this case, and 
never returns the name of the eID applet - not even when a name is provided as 
PARAM or name attribute -  hence there is no way to load an eID-applet specific 
app.

Original comment by [email protected] on 27 Jul 2010 at 11:19

from eid-applet.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 17, 2024
JAWS 11 fix for automatically reading dialog boxes in ie8: 

- Open IE and use INS+F2+S to get to the script manager
- Search for FocusChangedEvent function

Change:

if IsJavaWindow(focusWindow) then
  let strApplet = GetAppletName()
  if (strApplet != cscNull) then
    SwitchToConfiguration(strApplet)
    return
  endif
endIf


Into:

if IsJavaWindow(focusWindow) then
  let strApplet = GetAppletName()
  if (strApplet != cscNull) then
    SwitchToConfiguration(strApplet)
    return
  endif
  FocusChangedEvent (focusWindow, prevWindow)
endIf


Original comment by [email protected] on 27 Jul 2010 at 11:48

from eid-applet.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 17, 2024
Closing this one.
Just create a new ticket when a new, specific issue is encountered

Original comment by [email protected] on 17 Aug 2010 at 11:42

  • Changed state: Fixed

from eid-applet.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.