75 questions
0
votes
0
answers
46
views
How to check if narrator is enabled in UWP
I want to check if Windows narrator is enabled in UWP. Is there any event which I can subscribe to get narrator event? Alternatively is it possible to check if narrator is enabled?
I tried to find if ...
0
votes
0
answers
67
views
How to make TextBlock inside UserControl readable by Narrator in WPF
Narrator is not reading the TextBlock inside a UserControl:
<UserControl.Template>
<ControlTemplate>
<TextBlock Text="Test text" Focusable="True" ...
1
vote
0
answers
389
views
Why does the screen reader Narrator announce an item in an unordered list as heading 1?
I have a form progress component which is made up of a simple unordered list but Narrator with Chrome announces it incorrectly as a heading level 1 whereas Edge doesn't.
Codepen here: https://codepen....
0
votes
1
answer
182
views
Accessibility narrator reading the model class name instead of grid content of WPF application
In my WPF application, there is a grid view with three columns as Name, City, and Country. Please see the model class:
public class Employee
{
public string Name { get; set; }
public string ...
3
votes
1
answer
642
views
Screen reader not reading TextBlock content in WPF application
I am writing a WPF (.net 5) application which should support accessibility specifically windows narrator to read out the screen text. I am using few TextBlocks and expect that as soon as window is ...
1
vote
0
answers
125
views
How to Access Narrator Programmatically in Xamarin.forms?
How to Access CustomText in Xamarin.forms?
I'm trying to access narrator by referring https://learn.microsoft.com/en-us/learn/modules/narrator-and-voice-input/2-audio-descriptions-with-narrator.
I'm ...
0
votes
0
answers
409
views
Opening ComboBox in Panel, Windows Narrator announces document title
I'm having an issue with Windows Narrator on Edge where if I have a combo box (dropdown) inside a panel (modal), opening combo box starts announcing title of the tab. This issue is specific to Edge ...
1
vote
0
answers
386
views
Accessibility for highcharts having multiple series
Highcharts.chart('container',{
chart: {
//renderTo: document.getElementById("container"),
type: 'column'
},
...
0
votes
0
answers
741
views
Screen reader support for react components
I'm currently developing a web app with react. For that I used react-circular-progressbar library and component look as follows.
When I use narrator for screen reading it will says as
image, some ...
1
vote
2
answers
1k
views
<legend> tag is not read by Windows Narrator
Windows Narrator doesn't read legend tag inside fieldset. At the same time legend is read by NVDA and JAWS properly. Markup is the following:
<fieldset>
<legend>Description</legend&...
1
vote
0
answers
493
views
How to verify windows narrator is running c#
In my case i have to decide whether the narrator is running or not.
I am using below line of code to check narrator is running .
var isNarratorStarted = AutomationPeer.ListenerExists(AutomationEvents....
1
vote
1
answer
297
views
WPF: How to prevent reading underscore character of the AccessText element by Narrator?
I faced a strange issue when trying to support both keyboard and Narrator accessibility.
In the following XAML code:
<StackPanel>
<CheckBox Name="CheckBox"
...
0
votes
1
answer
177
views
a11y polymer button doesn´t provide auditive feedback of button state
I have the following polymer element, that inherits the "paper-behaviors/paper-button-behavior" but doesn´t provide any kind of auditive feedback when the user clicks the button. it just reads the ...
0
votes
1
answer
902
views
How to read the legend text along with the radio button label when the focus is on radio button
I have a radio button and a on top of it. When the narrator focus is on the radio button it just reads the value of radio button. But I want it to read the text value of the also.
[Code and UI ...
1
vote
2
answers
4k
views
Angular material radio button group - screen reader not reading properly
I am using radio button group in my application and it has 3 possible values. Whenever user is selecting a value, screen reader is reading "1 of 1" instead of "1 of 3".
I also ...
0
votes
0
answers
161
views
Universal Windows Application - Accessibility is not working for Canvas
<Grid Name="Simple Grid" >
<Button AutomationProperties.Name="Simple Button" Name="Button" AutomationProperties.AccessibilityView="Control" AutomationProperties.HelpText="Help text for ...
0
votes
1
answer
2k
views
Narrator reads out "No item in view" in angular application
Earlier the angular application app worked fine.
Some changes are done in core files, that is, grand-parent html tags, now the Narrator reads out for div element:
"No item in view"
The changes ...
2
votes
1
answer
125
views
Accessing XBOX Narrator Settings from web driven XBOX App
I am working on an XBOX app that is UWP javascript driven. I need to access the systems narrator settings, but have not found any options.
Does anybody know of a way to access this information, or ...
1
vote
2
answers
359
views
How to indicate two html sections are continuation of each other
Are there any attributes or is there a way to indicate that two sections are a continuation of each other. Example below:
<section id="section-top">
<div>Item 1 </div>
<...
1
vote
1
answer
292
views
Narrator Pitch on Variables in VBS
I am writing a script in VBS for when I log in I am greeted with the time. However, the XML variable for voice pitch is not functioning without text that is static. Am I missing something?
Sapi.speak ...
1
vote
0
answers
387
views
Narrator does not read check box status when set programmatically
I have a listbox which uses the datatemplate to generate a list of checkboxes. The issue is when using the keyboard , the focus moves twice over the item. Once because of the list item and next for ...
1
vote
1
answer
1k
views
Narrator. Scan mode. For TextBlock the narrator reads the Text properties twice
I have a TextBlock with dynamic data (Timer). The Text property is updated once per second.
The narrator sometimes (not always) reads the text twice in scan mode, because it have two properties with ...
2
votes
0
answers
843
views
The Narrator ignores AutomationProperties.Name when it is in scan mode
In my UWP app I have TextBlock:
<TextBlock Text="Text0"
AutomationProperties.Name="Text1" />
The Narrator reads only the Text properties in the scan mode ignoring ...
1
vote
1
answer
2k
views
How to force narrator to read without focus change?
I have an input box. Based on UP and DOWN arrow keypress, I want narrator to read values from a list which is a sibling element of this input box, i.e. on pressing DOWN, the narrator should read the ...
1
vote
1
answer
778
views
Narrator. Is there an alternative DialogContent?
I have many Custom and UserControl in my app.
For DialogContent the Narrator reads only inside the control using key combination "Caps Lock" + "Arrow",
but for the CustomControl and UserControl the ...