Is it possible to disable the screen element reader and only keep the keyboard key press sound? #17828
-
thanks a lot |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 3 replies
-
@pedoc could you please rephrase your query? I am not sure I understand what you're asking. |
Beta Was this translation helpful? Give feedback.
-
you can probably do that with autoit. Check for keyDown and then loop until keyUp and announce the key. Something like that anyway as opposed to keyPressed. Speak the letters through SAPI5, or record audio clips and play those. Not sure if you'll get far wanting to have a screen reader not be a screen reader. Btw, there should be ways for your test application to regain focus, I think. Check if it's not maximized and just re-maximize it. But that would get pretty irritating if you actually wanted to go somewhere else lol. |
Beta Was this translation helpful? Give feedback.
-
I'm afraid I'm not aware of any way of achieving what you want. You could try using Input help, though this will report the functions of NVDA's gestures, as well as the names of the keys, and students will be able to exit input help with At the end of the day, I think this usage is really trying to use a hammer to screw in a screw. You're constantly going to be fighting what NVDA is designed to do. |
Beta Was this translation helpful? Give feedback.
-
Hi. I did manage to make a small autoit3 application which provides keyboard echo with my voice, but if I type really really fast the characters get entered in the wrong order sometimes, so I'm not sure what to do about that. But it works pretty much everywhere, will read the letters you type into notepad, on the desktop, etc. Only place it hasn't been reading so far is task manager. But in any case, even if you or I can't get that to work reliably, I guess this proves that it is possible to do global keyboard capturing for this purpose. AT the moment my code is a bit messed up because I changed how it works mid-way through so once I clean it up I can send a link for it along. |
Beta Was this translation helpful? Give feedback.
-
Locking as off-topic to NVDA |
Beta Was this translation helpful? Give feedback.
I'm afraid I'm not aware of any way of achieving what you want. You could try using Input help, though this will report the functions of NVDA's gestures, as well as the names of the keys, and students will be able to exit input help with
NVDA+1
. It also doesn't announce the result of modified keys (that is, you'll hear "Shift plus 1", not "exclamation mark").At the end of the day, I think this usage is really trying to use a hammer to screw in a screw. You're constantly going to be fighting what NVDA is designed to do.