473,320 Members | 2,189 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

Browser for visually impaired?

Hi --

Where can I find a browser that would be used by the visually impaired --
specifically, one that reads out the pages being visited? And, of course,
<g> that would be CSS compliant ...

Thanks,
CL
Jul 20 '05 #1
13 3370
Charles Lavin wrote:
Hi --

Where can I find a browser that would be used by the visually impaired --
specifically, one that reads out the pages being visited?
<http://www.w3.org/WAI/References/Browsing>
And, of course,
<g> that would be CSS compliant ...


I don't know any browser yet that uses aural CSS, if that's what you want.
--
Johannes Koch
In te domine speravi; non confundar in aeternum.
(Te Deum, 4th cent.)

Jul 20 '05 #2
> Charles Lavin wrote:
Hi --

Where can I find a browser that would be used by the visually
impaired -- specifically, one that reads out the pages being visited?


<http://www.w3.org/WAI/References/Browsing>
And, of course,
<g> that would be CSS compliant ...


I don't know any browser yet that uses aural CSS, if that's what you
want.


Emacs W3 and Emacspeak have some support for aural CSS. For further
reference:

Emacs W3s aural CSS support
http://www.cs.indiana.edu/elisp/w3/d..._55.html#SEC55

Emacspeak project
http://emacspeak.sourceforge.net/

JAWS and IBM Homepage Reader are quite popular.
Lynx coupled with screenreader software is also used.

--
BenM
http://www.benmeadowcroft.com
Jul 20 '05 #3
Ben M:
I don't know any browser yet that uses aural CSS, if that's what you
want.
Emacs W3 and Emacspeak have some support for aural CSS. [...] JAWS and IBM Homepage Reader are quite popular.
Lynx coupled with screenreader software is also used.


As far as I know neither JAWS nor IBM Homepage Reader nor Lynx uses aural
CSS. I'd love to be wrong though.

--
Bertil Wennergren <be******@gmx.net> <http://www.bertilow.com>
Jul 20 '05 #4
Ben M <ce******@virgin.net> wrote:
JAWS and IBM Homepage Reader are quite popular.
Lynx coupled with screenreader software is also used.


I know a number of blind people who use BrailleNote computers, which come
with a built-in braille- and speech-based web browser.

Again, no CSS support AFAIK.
--
Darin McGrew, mc****@stanfordalumni.org, http://www.rahul.net/mcgrew/
Web Design Group, da***@htmlhelp.com, http://www.HTMLHelp.com/

"Nice is different than good." - Sondheim (LRRH, "Into the Woods")
Jul 20 '05 #5
"Charles Lavin" <x@x.x> wrote:
But I had one repeating
problem: every time the reader hit the term "IT" (Information
Technology), it would read it as "it."
Sounds familiar. I have also seen automatic translation programs treat
"IT" as the pronoun, creating strange effects. Besides, how many
people, when _seeing_ "IT", will know that it means 'information
technology'? I bet there are milliards of people who don't know that.

So when authoring for general audience, it is better to write
"information technology" or, better still, something more descriptive,
concrete, and to the point, like "computers", "the Internet", or "our
E-mail system", whichever is meant. Well, this is not a style sheet
issue, and there are situation where you virtually need to write "IT"
(e.g., to comply with company's OB Policy), but my point is that _even
if_ aural stylesheets worked, they would solve just a very small part
of the problems caused by the use of abbreviations. Basically, don't
abbreviate, and if you do, explain the abbreviations in plain text;
more on this: http://www.cs.tut.fi/~jkorpela/html/abbr.html
After checking my HTML reference and some of the accessibility
documents I've been collecting, I changed every instance of "IT" to
"<acronym>IT</acronym>". But the reader still read "IT" as "it."
Actually, you more or less _asked_ it to read it that way, since
"acronym" means 'a pronounceable word that was formed as an
abbreviation', though the W3C recommendations have thoroughly confused
the issue. In reality, the browser ignores the <acronym> markup, but if
it used it, the _sensible_ interpretation is that it explicitly tells
that "IT" is a word.
Tonight I was going to try to remedy the situation by adding the
proper aural style calls to the <acronym> tag ...


So you can save some time now. But if you wish to be an optimist and
author for the future, then <abbr class="init">IT</abbr> with

abbr { font-variant: normal;
letter-spacing: 0;
border: none; }
abbr.init { speak: spell-out; }

would presumably be OK. And you might add
abbr.init { font-size: 85%; }
especially if you have lots of initialisms, since the text looks
probably better that way - some printed publications use the principle
that all-caps initialisms are in reduced font size, and I think it
removes some of the distractions of excessive initialisms. This could
be a practical reason to add all that <abbr> markup, and if you've done
that, you might as well add the aural CSS one-liner.

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Jul 20 '05 #6
In article <vf************@corp.supernews.com>, Charles Lavin <x@x.x> wrote:
Case in point: I browsed a Web page using IE with Connect Outloud running in
the background. The Web page was read to me quite well. I was surprised not
only by the reading ability, but by how accessible the page was already,
even before making any modifications to the site. But I had one repeating
problem: every time the reader hit the term "IT" (Information Technology),
it would read it as "it."
Sighted people have a problem with such abbreviations too. At least one
style guide recommends avoiding periods in abbreviations, with an important
exception for abbreviations that are spelled like common non-abbreviation
words. Thus, you would use FBI, HTML, or USA, but you would use I.T.,
C.A.R., or U.S.
After checking my HTML reference and some of the accessibility documents
I've been collecting, I changed every instance of "IT" to
"<acronym>IT</acronym>". But the reader still read "IT" as "it." Tonight I
was going to try to remedy the situation by adding the proper aural style
calls to the <acronym> tag ...


Screen readers generally don't have access to your markup. All they see is
the text the browser displays. But even speaking browsers don't really use
the information in such markup, AFAIK.

It isn't an easy problem to solve. Should "Dr." be pronounced "doctor",
"drive", or "dee-are-period"? Should "read" be pronounced "red" or "reed"?
But this is wandering way off-topic for ciwas...
--
Darin McGrew, mc****@stanfordalumni.org, http://www.rahul.net/mcgrew/
Web Design Group, da***@htmlhelp.com, http://www.HTMLHelp.com/

Headlines we'll never see: "Psychic Wins Lottery"
Jul 20 '05 #7
On Sat, Jun 28, Darin McGrew inscribed on the eternal scroll:
Screen readers generally don't have access to your markup.
Right. It's important to distinguish between screen readers and
true speaking browsers.
All they see is the text the browser displays.
Right.
But even speaking browsers don't really use
the information in such markup, AFAIK.
I think they're moving in that direction, but there's lots of
possibilities, and AFAICS only relatively few (such as alt text) have
been exploited yet.

IBM's HPR is a true speaking browser (well, OK: it's layered on top of
MSIE and a library of speaking routines, but that's OK: to the user it
appears to be a speaking browser).

From my recollection, case-sensitive pronunciations are supported: it
would sure be feasible to tell it to pronounce "IT" as eye-tee while
leaving "it" and "It" to be pronounced as the word. But to be honest,
the user interface for actually tuning these things was clumsy even
for a sighted user, I'd be interested to hear whether blind users
actually bother with it. (I soon got sick of hearing "www"
laboriously spelled out, and taught it to rattle-off "worldwideweb"
instead!).
It isn't an easy problem to solve. Should "Dr." be pronounced "doctor",
"drive", or "dee-are-period"? Should "read" be pronounced "red" or "reed"?
Indeed.
But this is wandering way off-topic for ciwas...


It's definitely about presentation. CSS isn't the only "style sheet"
language that's on topic for this group, even though it's the one most
often discussed. Maybe configuration files for IBM HPR's pronunciation
could be deemed on-topic after all ;-)
Jul 20 '05 #8
Darin McGrew <mc****@stanfordalumni.org> wrote:
It isn't an easy problem to solve. Should "Dr." be pronounced "doctor",
"drive", or "dee-are-period"?


My favourite was
<http://www.google.com/search?q=%22Washington+Gleichstrom%22>
as translated by AltaVista Babelfish. But it doesn't do this any longer.

--
http://www.unics.uni-hannover.de/nhtcapri/plonk.txt
Jul 20 '05 #9
On Sat, Jun 28, Andreas Prilop inscribed on the eternal scroll:
"Jukka K. Korpela" <jk******@cs.tut.fi> wrote:
milliards of people
I wonder if this term is still recognized.


The term "milliard" hasn't been widely used in British English. Back
when (within my lifetime) the word "billion" was understood in British
English to mean 10**12, the usual term for 10**9 was "thousand
million".

By now, the stampede to USA usage is probably irreversible.
Anyone remember the spelling "fount"?


Yes.
Jul 20 '05 #10
In article <Pi*******************************@lxplus096.cern. ch>,
fl*****@mail.cern.ch says...
On Sat, Jun 28, Andreas Prilop inscribed on the eternal scroll:
"Jukka K. Korpela" <jk******@cs.tut.fi> wrote:
milliards of people


I wonder if this term is still recognized.


The term "milliard" hasn't been widely used in British English. Back
when (within my lifetime) the word "billion" was understood in British
English to mean 10**12, the usual term for 10**9 was "thousand
million".

By now, the stampede to USA usage is probably irreversible.

Standardisation is a *good* thing in languages!
Jul 20 '05 #11
BH
In message <vf************@corp.supernews.com>, Charles Lavin <x@x.x>
writes
Hi --

Where can I find a browser that would be used by the visually impaired --
specifically, one that reads out the pages being visited? And, of course,
<g> that would be CSS compliant ...

Thanks,
CL


The vast majority VI use IE 5 - 6 and use a screen reader to read the
text on the page some of the more rich VI users also use Braille
displays you can download demos of the programs if you wish However,
they do alter your computers setting quite a lot

There are 3 main programs Jaws being the most popular world wide

Jaws
http://www.freedomscientific.com/
Windows Eyes
http://www.gwmicro.com/windoweyes/windoweyes.htm
Hal
http://www.dolphinuk.co.uk/products/hal.htm

Barrie,

--
Barrie Heaton
Jul 20 '05 #12
BH
In message <Pi*******************************@lxplus096.cern. ch>, Alan
J. Flavell <fl*****@mail.cern.ch> writes
From my recollection, case-sensitive pronunciations are supported: it
would sure be feasible to tell it to pronounce "IT" as eye-tee while
leaving "it" and "It" to be pronounced as the word. But to be honest,
the user interface for actually tuning these things was clumsy even for
a sighted user, I'd be interested to hear whether blind users actually
bother with it. (I soon got sick of hearing "www" laboriously spelled
out, and taught it to rattle-off "worldwideweb" instead!).
It isn't an easy problem to solve. Should "Dr." be pronounced "doctor",
"drive", or "dee-are-period"? Should "read" be pronounced "red" or "reed"?


Indeed.

I's all down to user preference - all screen reader come with standard
pronunciations of eg Dr. = Doctor as to the www you can set the screen
reader to say worldwideweb if you wish However, the more abbreviations
you enter in to be spoke in full the more your computer is slowed down
it is a trade off - As to punctuation the setting are All, most, some
and none, most seasoned users set it to some so Dr. would come out as
Doctor However, if all were selected then it would be "Doctor period"
Barrie,
--
Barrie Heaton
Jul 20 '05 #13
BH
In message <Pi*****************************@lxplus072.cern.ch >, Alan J.
Flavell <fl*****@mail.cern.ch> writes
On Sun, Jun 29, BH inscribed on the eternal scroll:
as to the www you can set the screen
reader to say worldwideweb if you wish However, the more abbreviations
you enter in to be spoke in full the more your computer is slowed down


Except that this is one of the few abbreviations where the full form
is shorter than spelling out the abbreviation. That was my point.

cheers

From a speech output point maybe but if you are telling JAWS for example
to detect x and say Y that is one more item it has to scan the screen
for that eats in to the computers number crunching capability's
Barrie,

--
Barrie Heaton
Jul 20 '05 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Billy | last post by:
Hi, I was wondering if it is possible to change the browsers text settings. ie. in internet explorer you can change the text size by going to: View -> Text Size Is there a way to overide a...
115
by: J | last post by:
I've run CSSCheck on my style sheets and I always get a warning similar to this: "font: bold 9pt/100% sans-serif Warning: Absolute length units should not generally be used on the Web ..." ...
1
by: Gordon McVey | last post by:
I've been working at this web company for a while now (mainly on PHP stuff) who are developing a website. The big problem with this site is that it's all in Flash and uses some really dumb design....
1
by: Timo | last post by:
All my font-sizes are set as relative sizes in CSS (large, medium, small, x-small, etc). Let's say something is set in CSS to be xx-large, but a visually impaired user wants it displayed even...
4
by: David Logan | last post by:
Hello, I am trying to open a window with a graphic in it and have the window be exactly the correct size of the image. Is there anyway to do this that will work on any browser on any OS???? ...
11
by: Simon Shutter | last post by:
Forgive me if I am posting to wrong newsgroup and for a couple of loaded questions. First, from what I understand, one of the advantages of XHTML/CSS is the ability of screen readers/braille...
10
by: Roger Withnell | last post by:
I seem to spend far too much of my time struggling with browser inconsistencies concerning Javascript (not to mention CSS). What do you think is the most efficient development regime, including...
6
by: kklickman | last post by:
I've got a page with two columns: one floats left, the other doesn't float. The page displays fine in Netscape no matter what. In IE (both 6 and 7), it looks fine as long as the browser window is...
13
by: NickName | last post by:
"For the vision impaired, SVG offers tremendous potential for interactive Internet mapping applications as discussed by Gardner and Bulatov (2001).". Now, here's an SVG file with fair/medium...
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.