Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
51 views

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 ...
Sumnoon's user avatar
  • 145
0 votes
0 answers
39 views

Working on the Angular 16 reactive form, where we are creating the p-radiobutton dynamically. When the user uses the screen-reader to select a radio button, the JAWS/Narrator announces it as non-...
Anisha's user avatar
  • 1
0 votes
0 answers
73 views

Narrator is not reading the TextBlock inside a UserControl: <UserControl.Template> <ControlTemplate> <TextBlock Text="Test text" Focusable="True" ...
meJustAndrew's user avatar
  • 6,769
0 votes
0 answers
132 views

I need to add some text to what Narrator reads from a Win32 ListView. E.g., besides a listview item's caption, it needs to say the type of the item (the type is defined by the application in this case)...
Eugene Mayevski 'Callback's user avatar
1 vote
0 answers
390 views

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....
tay's user avatar
  • 158
1 vote
1 answer
97 views

I was wondering if i could output something that the windows narrator can use to narrate my tkiner application. import tkinter as tk # create root window root = tk.Tk() root.title("Test") ...
About_to_give_up's user avatar
0 votes
1 answer
182 views

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 ...
Vignesh VS's user avatar
0 votes
0 answers
107 views

I have one xaml page where there are multiple UI elements are there, and i wanted narrator to pick some UI element and ignore other. So with below code you can, see that I have four Grid Row ...
Ritesh Kumar's user avatar
3 votes
1 answer
643 views

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 ...
Amit's user avatar
  • 31
1 vote
1 answer
1k views

I've got a WPF application which contains a button. When you press the button, a Popup opens. The Popup contains information about the meeting in question. With Narrator turned on, the contents of the ...
Tony Vitabile's user avatar
1 vote
0 answers
128 views

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 ...
Rasika Palanisamy's user avatar
-1 votes
1 answer
383 views

I have a ListView which is populating the result based on DataTemplate. See the code below I am raising property changed event in cpp to reflect the same in UI for ResultText field. But the same value ...
parul's user avatar
  • 69
0 votes
0 answers
411 views

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 ...
Lalit Umbarkar's user avatar
0 votes
0 answers
107 views

I have an accessibility problem with a rich text control in a clients' WPF project. My client uses the XamRichTextEditor by infragistics, but Microsoft Narrator does not read its contents. I have ...
MikeLimaSierra's user avatar
1 vote
0 answers
390 views

Highcharts.chart('container',{ chart: { //renderTo: document.getElementById("container"), type: 'column' }, ...
Kanika Pasrija's user avatar
1 vote
1 answer
830 views

I have an old WPF application with needs and accessibility features. The application uses radio buttons to construct a menu with a popup. The problem is the user doesn't want the narrator to say "...
Taufiq Abdur Rahman's user avatar
0 votes
0 answers
744 views

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 ...
Amith Dissanayaka's user avatar
1 vote
0 answers
947 views

Upon clicking the button with appropriate Javascript to toggle aria-expanded property of the button. Narrator/edge will announce the epanded/collapsed property in every click in this case. Notice role=...
Npandit's user avatar
  • 61
1 vote
2 answers
1k views

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&...
Oleh Khitrin's user avatar
0 votes
2 answers
1k views

I'm using Windows Narrator and a version number like 2.3.96 is being reader as a date "2nd March, 1996". How do I handle version numbers for screen readers? I see some answers suggested using a label ...
charAt's user avatar
  • 39
1 vote
0 answers
493 views

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....
sridhar patro's user avatar
3 votes
0 answers
164 views

I have a question to following issue: I have a ListView that includes a GridView. <ListView Margin="10,10,10,48" Name="listView_Anlagen" AutomationProperties.LabeledBy="{Binding Dateiname}" > ...
KarstenS's user avatar
1 vote
1 answer
304 views

I faced a strange issue when trying to support both keyboard and Narrator accessibility. In the following XAML code: <StackPanel> <CheckBox Name="CheckBox" ...
romaneo's user avatar
  • 33
3 votes
1 answer
1k views

I have question regarding screen reader (windows narrator) in chrome browser. I have a button tag that will get focus on tab key press. I am expecting a screen reader to read what button it is but it ...
Swathi swathi's user avatar
0 votes
1 answer
182 views

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 ...
Yala Yala Herzlin's user avatar
0 votes
1 answer
91 views

'Caps Lock + Ctrl + i' starts Windows 10 Narrator reading from the start of the document. What is the keyboard short cut combination command to start Narrator reading beginning at the current ...
Marty_Oden's user avatar
0 votes
1 answer
905 views

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 ...
Sagar Samal's user avatar
2 votes
2 answers
4k views

I have a Visual Studio 2019 solution that contains two projects: a Class Library (Universal Windows) that contains a login Page and a Blank App (Universal Windows) that simply navigates to said login ...
Daniel Kurtz's user avatar
1 vote
2 answers
4k views

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 ...
alok_dida's user avatar
  • 1,743
1 vote
1 answer
745 views

Windows narrator doesn't read the contents of stack panel, below is the snippet of stack panel <StackPanel Name="StackAutoUpdatePanel" Focusable="True" KeyboardNavigation.IsTabStop="True" ...
AmY's user avatar
  • 13
0 votes
0 answers
164 views

<Grid Name="Simple Grid" > <Button AutomationProperties.Name="Simple Button" Name="Button" AutomationProperties.AccessibilityView="Control" AutomationProperties.HelpText="Help text for ...
user avatar
2 votes
0 answers
964 views

I am developing a webpage which shows a text-only modal popup upon clicking a button on the webpage. The issue is: Narrator is saying aria-label for the popup followed by "empty document", but the ...
Aravind Anil's user avatar
0 votes
1 answer
2k views

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 ...
Manohar Reddy Poreddy's user avatar
0 votes
1 answer
234 views

I'm currently working on a school assignment where I need to create an app for visually impaired users. I would like to use Java with JavaFx for GUI. Preferred element for visually impaired users is ...
Nonanon's user avatar
  • 13
2 votes
1 answer
125 views

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 ...
dev_pool's user avatar
  • 203
0 votes
2 answers
788 views

I'm trying to use ARIA Labels for accessibility by the way paragraph tag is working fine in chrome using narrator tool, but is not readable in Edge. I'm not using any aria attribute for this type of ...
UserEsp's user avatar
  • 426
1 vote
2 answers
360 views

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> <...
Gema Beltran's user avatar
0 votes
2 answers
2k views

When I set focus on the body tag, Windows narrator reads the text in tag. How can I prevent this from happening? I've tried aria-hidden="true", role="presentation", tabindex="-1". None of these are ...
Gema Beltran's user avatar
1 vote
1 answer
296 views

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 ...
Eternal_Dusk's user avatar
3 votes
2 answers
2k views

I have WPF code, where the narrator reads a hidden toggle button. It reads 'expand/collapse button'. I even set it to collapsed. And set the focusable property to false. None of this works. Is there ...
shreya shetty's user avatar
1 vote
0 answers
391 views

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 ...
shreya shetty's user avatar
1 vote
0 answers
234 views

I'm working on the input app, which doesn't have focus when users are typing. And users can't press "Alt" + "Tab" key to select it as it doesn't show in the running app list. The problem is that I ...
Jacky Yang's user avatar
1 vote
1 answer
1k views

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 ...
Vladimir Bolshakov's user avatar
1 vote
1 answer
2k views

I have many items with the events: "Tapped", "KeyUp", "KeyDown". Example: <GridView KeyDown="OnKeyDown" Tapped="OnTapped" KeyUp="OnKeyUp"> In the normal mode of the ...
Vladimir Bolshakov's user avatar
2 votes
0 answers
845 views

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 ...
Vladimir Bolshakov's user avatar
3 votes
2 answers
1k views

I have a custom control. i like to provide the support for System screen reading support. Is there any logic to find that the narrator or coded UI tool is enabled in our machine.??
Bala's user avatar
  • 83
1 vote
1 answer
2k views

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 ...
PG1's user avatar
  • 1,242
0 votes
0 answers
322 views

i am trying to launch narrator.exe from my c# code in visual studio but it continuously throws an exception . the code which i am using is :: " Process NarratorProcess = process.Start(@"C:\Windows\...
Sumit's user avatar
  • 671
1 vote
1 answer
787 views

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 ...
Vladimir Bolshakov's user avatar
1 vote
1 answer
198 views

I am not able to launch narrator program from Visual Studio using C#. I have tried using complete path and other similar hacks but no outcome ? The code is : System.Diagnostics.Process.Start(@"C:\...
Sumit's user avatar
  • 671