|
Re: Introducing the Quick Dictionary add-on
#addonrelease
Hi Ibrahim, Soloman, Gary, William and everyone who reads this message :)
Friends, I didn't take into account one detail, namely that the keyboard shortcut NVDA + D is already used in NVDA...
I'll see
Hi Ibrahim, Soloman, Gary, William and everyone who reads this message :)
Friends, I didn't take into account one detail, namely that the keyboard shortcut NVDA + D is already used in NVDA...
I'll see
|
By
Oleksandr Gryshchenko
·
#77681
·
|
|
Pronunciation: Unwanted Dates
Hi Everyone
I am running windows 7 with the latest version of NVDA using the IBM TTS
Voice.
I have lots of music on my machine. If there is a track beginning "Mary"
preceded by a track number, NVDA
Hi Everyone
I am running windows 7 with the latest version of NVDA using the IBM TTS
Voice.
I have lots of music on my machine. If there is a track beginning "Mary"
preceded by a track number, NVDA
|
By
Pele West
·
#77680
·
|
|
Re: Introducing the Quick Dictionary add-on
#addonrelease
Well, why not using request module to send request to check dict meaning from some popular website?
Oleksandr Gryshchenko 於 27/9/2020 6:46 寫道:
Well, why not using request module to send request to check dict meaning from some popular website?
Oleksandr Gryshchenko 於 27/9/2020 6:46 寫道:
|
By
William
·
#77679
·
|
|
Re: nvda +D = long description
There is a command NVDA key d that will open the long description in a new window.
Gene
There is a command NVDA key d that will open the long description in a new window.
Gene
|
By
Gene
·
#77678
·
|
|
Re: Introducing the Quick Dictionary add-on
#addonrelease
Hi,
I am having a problem trying to register the add on. I get the email with the code and I enter it but, when I go to next nothing happens. Is there a step that I am missing? Thanks for any
Hi,
I am having a problem trying to register the add on. I get the email with the code and I enter it but, when I go to next nothing happens. Is there a step that I am missing? Thanks for any
|
By
Gary Metzler
·
#77677
·
|
|
Re: nvda +D = long description
I've never actually seen one of those. Although I do not believe NVDA indicates when a longdesc is actually available, does it?
I've never actually seen one of those. Although I do not believe NVDA indicates when a longdesc is actually available, does it?
|
By
Rob Hudson
·
#77676
·
|
|
Re: nvda +D = long description
This appears to be an accessibility feature for blind users some web site developers implement. Let's say you are on something, that is usually a graphic, as the manual says and you want to see if
This appears to be an accessibility feature for blind users some web site developers implement. Let's say you are on something, that is usually a graphic, as the manual says and you want to see if
|
By
Gene
·
#77675
·
|
|
Re: nvda +D = long description
Hi,
A long description (often shortened to "longdesc") is used by web authors to provide additional details about a web element (typically images) via a dedicated description. As such, it is employed
Hi,
A long description (often shortened to "longdesc") is used by web authors to provide additional details about a web element (typically images) via a dedicated description. As such, it is employed
|
By
Joseph Lee
·
#77674
·
|
|
nvda +D = long description
Hi friends
May you explain to me what long description
NVDA+d means? When I read the nvda user guide, i couldn't understand
what long description
NVDA+d means and its use.
Hi friends
May you explain to me what long description
NVDA+d means? When I read the nvda user guide, i couldn't understand
what long description
NVDA+d means and its use.
|
By
Aschalew Byness
·
#77673
·
|
|
Re: Pronunciation of phone numbers
Luke,
Just to be clear, I am really not, ever, trying to handle every possible odd exception condition that might come up. If what I craft gets 99.5% of all commonly used formats, I'm
Luke,
Just to be clear, I am really not, ever, trying to handle every possible odd exception condition that might come up. If what I craft gets 99.5% of all commonly used formats, I'm
|
By
Brian Vogel
·
#77672
·
|
|
Re: Pronunciation of phone numbers
I don't know what the reasoning for it is, but I have seen it in some places, usually done by North American businesses. I always assumed it was somehow related to fonts on business cards or the
I don't know what the reasoning for it is, but I have seen it in some places, usually done by North American businesses. I always assumed it was somehow related to fonts on business cards or the
|
By
Luke Davis
·
#77671
·
|
|
Re: Pronunciation of phone numbers
-
Well, your example is exactly what my tweak would have been, so, sure. All I wanted was a set of examples of exactly what formats could be expected, which would lead to the [ \.-] character class
-
Well, your example is exactly what my tweak would have been, so, sure. All I wanted was a set of examples of exactly what formats could be expected, which would lead to the [ \.-] character class
|
By
Brian Vogel
·
#77670
·
|
|
Re: Pronunciation of phone numbers
I should note, that the one case that won't handle, is:
(###)###-####
I suspect we would have to get creative to manage that one. Along the lines of:
\(?(\d)(\d)(\d)(?:\)?[ \.-]|\))(\d)(\d)(\d)[
I should note, that the one case that won't handle, is:
(###)###-####
I suspect we would have to get creative to manage that one. Along the lines of:
\(?(\d)(\d)(\d)(?:\)?[ \.-]|\))(\d)(\d)(\d)[
|
By
Luke Davis
·
#77669
·
|
|
Re: Pronunciation of phone numbers
Why not just use something like this? Untested, but it should catch periods, dashes, and spaces.
Replacement uses a comma for pausing.
Regex: \(?(\d)(\d)(\d)\)?[ \.-](\d)(\d)(\d)[
Why not just use something like this? Untested, but it should catch periods, dashes, and spaces.
Replacement uses a comma for pausing.
Regex: \(?(\d)(\d)(\d)\)?[ \.-](\d)(\d)(\d)[
|
By
Luke Davis
·
#77668
·
|
|
Re: Pronunciation of phone numbers
Sure thing, Brian. I wasn't looking for a short course on regular expressions. :) I'd like to handle phone numbers where the area code, excnagge and local sections are separated with dashes
Sure thing, Brian. I wasn't looking for a short course on regular expressions. :) I'd like to handle phone numbers where the area code, excnagge and local sections are separated with dashes
|
By
George McCoy
·
#77667
·
|
|
Re: Pronunciation of phone numbers
George,
Give me a short list of examples that cover the range of formats you need for this to work with and I can tweak the regex. Trying to explain how is not something I'm inclined to do, at least
George,
Give me a short list of examples that cover the range of formats you need for this to work with and I can tweak the regex. Trying to explain how is not something I'm inclined to do, at least
|
By
Brian Vogel
·
#77666
·
|
|
Re: Pronunciation of phone numbers
Brian,
This regex works for phone numbers formatted with dashes, with or without parentheses, but fails when it encounters spaces.
If I replace the dashes in the pattern
Brian,
This regex works for phone numbers formatted with dashes, with or without parentheses, but fails when it encounters spaces.
If I replace the dashes in the pattern
|
By
George McCoy
·
#77665
·
|
|
Re: Introducing the Quick Dictionary add-on
#addonrelease
Sir,
Thank you for coming up with such brilliant and useful add--on. I am
going to try it with my Mother tongue Tamil.
Is there any chance of you getting it to work offline in future version?
--
Sir,
Thank you for coming up with such brilliant and useful add--on. I am
going to try it with my Mother tongue Tamil.
Is there any chance of you getting it to work offline in future version?
--
|
By
soloman s
·
#77664
·
|
|
Re: Pronunciation of phone numbers
Many thanks, Brian. I'll give it a try.
Many thanks, Brian. I'll give it a try.
|
By
George McCoy
·
#77663
·
|
|
Re: Pronunciation of phone numbers
Thanks brian.
I thought regular expressions might do the trick, but I don't know much about them. The format I usually use is xxx-xxx-xxxx.
George
Thanks brian.
I thought regular expressions might do the trick, but I don't know much about them. The format I usually use is xxx-xxx-xxxx.
George
|
By
George McCoy
·
#77662
·
|