Accessibility: the practice of making software which functions smoothly for users with a variety of disabilities, including blindness, deafness, and paralysis among others.
0
votes
1answer
21 views
Getting the wrapper object in java
I am instantiating a LinkTableColumn object.
When instantiating - I am overriding the method, which needs my instance of LinkTableColumn.
When writing the following - compiler returns: "No enclosing ...
1
vote
0answers
25 views
Is there a standard way to hint that a number should be read one character at a time?
What's the preferred way to handle long numbers, like a bank account number, that should be read one character at a time? I know users can get TalkBack to read out a number this way, but it would be ...
0
votes
1answer
17 views
Are any sites HTML5 or CSS W3C level 2.1 valid?
I am reviewing an educational website and it does not pass HTML5 nor CSS w3.org acessibility tests. Is this the norm? Do any sites these days pass these tests?
Eg.
Bad value Format for attribute ...
0
votes
0answers
8 views
android accessibility: How to I suppress word “Image” in ImageView accessibility?
I turned on Accessibility - TalkBack = on.
It returns "Hello World Image" when I focus the ImageView. I would like to suppress word "Image" and just would like to hear "Hello World" without word ...
0
votes
0answers
14 views
Meeting WCAG AAA criteria - worth mentioning?
I have been asked to critique a site... while doing the colour contrast accessibility test, I found out that a few things don't meet the WCAG AAA criteria. Is this something I should bring up? Or will ...
1
vote
3answers
36 views
Marking up implicit column header for accessibility in HTML
I'm providing a table of data which will roughly look like this:
| | 2009 | 2010 | 2011 |
| location 1 | pass | pass | fail |
| location 2 | fail | pass ...
0
votes
0answers
17 views
Android accessibility is not enabled before I start my app
I'm building an app for a phone using JB that require to access notification though the Accessibility service.
The app check if AccessibilityService is enabled for my application. If not it prompt ...
0
votes
0answers
29 views
Button Elements as Tabs
Is it okay to use <button> elements (rather than anchor links) as tabs?
Here's my use-case...
I'm marking up a set of tabs using button elements, and when I try to assign them ARIA roles, I ...
0
votes
1answer
20 views
Android - Override TalkBack gestures
I want to use TalkBack within my app, but still want some activities to behave differently. For example, when entering a specific activity I want to select a button (trigger a button click) when ...
-7
votes
0answers
50 views
why doesn't android have the invert color option like the iphone ? [closed]
I just bought a nexus 7, and even with the brightness all the way down the white background still strains my eyes. From searching the web I'm not the first to experience this annoyance and it puzzles ...
0
votes
0answers
26 views
Cannot add accessibility services to Android 4.2.2
I've tried to add my own (custom) accessibility service to my device (with Android 4.2.2) but did not manage to.
I thought there was a problem with my code and installed the AccessibilityService ...
3
votes
1answer
52 views
Screen readers: How to make a word with tags surrounding its letters be spoken as a single word, rather than a series of letters?
I have a heading like this:
<h1>This is a t<span>e</span>st.</h1>
The tags around the letter "e" cause Mac OS X Voiceover to read the individual letters of the word ...
0
votes
0answers
18 views
Android Accessibility onAccessibilityEvent not received in jelly bean
I'm trying to receive accessibility events on an android phone with Jelly bean (Android version 4.1.1).
I've seen several question that address this problem (specially regarding the compatibility ...
1
vote
2answers
23 views
Accessibility Skiplinks: stiil needed?
A few years ago it used to be best practice to include (visually hidden) accessibility skiplinks in websites.
<ul>
<li><a accesskey="0" href="/">Home</a></li>
...
0
votes
0answers
48 views
Accessibility broken with Preview.app in OS X 10.8.4?
We have an application that integrates with different programs (among which is the Preview.app) using accessibility. We use the AXUIElementSetAttributeValue function to programmatically select some ...
-1
votes
1answer
18 views
Does Google use any “Language” flags / tags set within a PDF file when determining its language? [closed]
Authors of PDF files can set document-wide properties describing the language (or languages) contained within it.
Although this feature is traditionally described as an accessibility feature (so that ...
1
vote
0answers
31 views
Can one Android application control another application via UI Automator?
I am trying to write an Android application/service which can be deployed on the target device. The app can be used as a hook to remotely control a target device. Starting from Jelly Bean release, ...
0
votes
1answer
27 views
Accessibility Checker says that Drop Down has 2 Labels
I have created a drop down for users to select a service and go to it. I checked the coding with my accessibility checker and it says it has two labels. Can any one spot where the error is can anyone ...
0
votes
2answers
22 views
Charles and AppleScript (missing values in Accessibility Inspector)
EDIT: I'm trying to save a session file from the Web Proxy Debugging App Charles (http://www.charlesproxy.com/) using AppleScript. Basically, I select "Export", put in a temp name, and then save it. ...
1
vote
1answer
44 views
WCAG 2.0 level A and AJAX generated content
I'm having trouble finding a clear answer as to whether as site can pass for at least WCAG 2.0 level A if it uses AJAX in some way.
For example from WCAG2.0 states
"Can I meet WCAG 2.0 with ...
4
votes
2answers
74 views
ARIA Roles for Carousels (a.k.a. sliders, slideshows, galleries)
What ARIA roles should be used for carousels, like the one below?
Notes:
I'm familiar with the slider role, but this refers to a different type of widget.
The example is from USA.gov and the only ...
0
votes
1answer
46 views
NSWebView override VoiceOver when selected
I have a NSWebView and when I use VoiceOver on Mac OS X it announces the NSWebView selection as "HTML content" This is most likely going to confuse the end user as I am using it for a custom control ...
0
votes
1answer
35 views
android Accessibility screen magnifier
I would like to create an Android Accessibility Application/Service.
This Accessibility app would be able to magnify any screen image produced by any application resident on the android device.
for ...
0
votes
1answer
33 views
Bizarre issue I'm having with my jQuery
This is an accessibility bug I've been assigned at work where items aren't traverse-able within a dialog box using tab.
Really strange issue, hoping you guys can help.
We begin with the following ...
0
votes
0answers
23 views
Flex Air Application on Mac for accessibility
I'm trying to run my air app on Mac with the accessibility turned on. It seems like, it only detects the menu bar and the name on top. Going through any of the input text field or buttons doesn't ...
1
vote
1answer
41 views
Semantic markup and ARIA roles to indicate primary and secondary navigation of page
Is there a way of indicating (for accessibility purposes) which nav menu on a page is the primary navigation?
<nav role="navigation" id="primaryNavMenu">
<ul> ... </ul>
...
0
votes
0answers
23 views
StageWebView for accessibility
I'm struggling with my flex application where I'm rendering the HTML pages through StageWebView. I need to add accessibility to it, however, it doesn't seems like accessibility is supported in the ...
4
votes
2answers
90 views
Semantic HTML5 structure versus CSS layout needs
I have a web page like the following one:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Title</title>
</head>
...
2
votes
2answers
48 views
Writing accurate <th> for accessible <table>
I am following the UN's accessibility guidelines to write accessible table.
I have this table. I made what -I think- should be a <th> bold.
This is the HTML:
<table width="100%">
...
9
votes
4answers
212 views
Why does `ul` have ARIA role `menu` but `menuitem` is forbidden for `li`?
Just covered out some strage specs regarding ARIA roles. Why does ul have ARIA role menu but menuitem is forbidden for li?
I would like to describe a navigation bar using ul, li and HTML5's nav ...
0
votes
1answer
29 views
Accessibility tool JAWS vs NVDA for flex air application
I have a flex AIR application and trying to add accessibility to it. I tried to use JAWS demo version doesn't seem to work well at all. It doesn't detect the names of my text input all the time and ...
0
votes
1answer
38 views
HTML5 details element and VoiceOver
I am currently using the details/summary element in my JSP. When I turn on VoiceOver to test accessibility, VoiceOver simply stops when it reaches the details element. It sounds like it doesn’t know ...
2
votes
0answers
38 views
UIDatePicker - Day picker reference
I am integrating an iOS app with Accessibility. I have to put the focus on the Day-picker of an UIDatePicker, but I don't find a reference to that "subpicker". If you guys could help me with this, I ...
0
votes
1answer
35 views
Desktop Air Application Accessibility
I'm trying to add accessibility to my application. I still can't figure out exactly how accessibility works in spark components.
I'm on window's platform with the narrator function enabled.
All I ...
0
votes
1answer
31 views
iPhone/iPad/Android: Is there some api for testing web application accessibility?
Instead of going through VoiceOver or similar software, I want a function which can take an element-id as parameter and return the alt text or label so that I can validate whether the text is correct. ...
0
votes
0answers
19 views
On :focus issues with RokNav Fusion menu in Gantry (for joomla)
I am having issues with my websites menu: I am trying to make it more accessible, so using the :focus so the website can be navigated with Tab and Shift+Tab - but the submenu (the dropdown) is not ...
3
votes
1answer
99 views
Accessible Custom Keyboard in iOS
I want to make a custom keyboard perform like the iOS software keyboard with regards to accessibility. When a button-press adds a letter to a UITextField, the letter should be spoken by VoiceOver in ...
2
votes
2answers
17 views
WCAG 2.0: Technique H30
I was reading the WCAG 2.0 Technique H30.
The Procedure says:
For each link in the content that uses this technique:
Check that text or a text alternative for non-text content is
...
1
vote
1answer
33 views
How do I use accessibility options to scale fonts within a WebView?
I'd like my app to take advantage of accessbility options for the visually impaired. All of my lists, menu items and text views scale appropriately, but WebView does not.
I'm using ...
0
votes
0answers
40 views
HTML character codes in alt tag
I am writing an alt attribute for an image and it includes an ampersand. Should I put the HTML character code, & in the alt attribute or can I just put an ampersand? Would the same be true for ...
0
votes
0answers
13 views
Set contentDescription for a custom dialog
how can I set a contentDescription to be read by the accessibility service when my dialog is opened? I'm currently using a dialog with a custom layout to display a blocking laoding screen and the ...
0
votes
0answers
37 views
Set contentDescription for ActionBar's up button
I'm trying to customize the "Navigate up" default contentDescription that is associated with the up button of the ActionBar (I'm using ActionBarSherlock).
From ActionBarView's source:
public void ...
0
votes
0answers
28 views
event can be only triggered by mouse, without any impact on Tab clicking
I have the following code. However, the event is triggered when both mouse entering selector and selector is given focus via Tab.
$("selector").mouseenter(function(){
$(this).addClass("red");
...
0
votes
4answers
69 views
How can I replace the screen reader audio with a prerecorded audio file?
I work on a multilingual website that will contain many languages that are not normally written, and I wonder if there are any ways to get this working for people using screen readers? Is it possible ...
1
vote
0answers
28 views
How to get accessKeyLabel in WebKit with JavaScript?
accessKeyLabel from what I can tell is not supported in Webkit (but works fine in Firefox) at the time of writing. This snippet shows what happens:
<input type="text" accesskey="D" name="dog" ...
4
votes
1answer
173 views
Use Large Text Accessibility feature in iOS app
In iOS devices it is possible to set Large Text in the Accessibility Settings. The user can specify different font sizes here. I would like to use this font size in my app as well. I haven't found ...
0
votes
1answer
47 views
Aria role='Alert' not being seen by NVDA
I have the following div tag:
<div id="ErrorMsg"
role="alert"
class="alert alert-error"
style="display:none;">
Email or password incorrect
</div>
When I ...
1
vote
1answer
89 views
ColorBox - add ALT text to gallery images?
Is there any way to make ColorBox place ALT text on the IMG tags it generates? Note that I am NOT looking for a caption, but for a text alternative that screen readers can recognize and read aloud.
...
0
votes
3answers
55 views
How to tell a screen reader to use an attribute instead of the link text?
I have a link within an unordered list as follows:
<li class="savelink">
<a href="/save"><span>Save</span></a>
</li>
Normally the screen readers read "Save". ...
0
votes
1answer
62 views
Accessibility Issues with Site-Wide jQuery Audio Player
I've been researching ways to use a jQuery music player site-wide without stopping playback when a new page is loaded. One of my possible options is to hide all of the content using CSS, and then ...
