Re: dayOfTheWeek-3.0-dev
#addontesting
Cyrille
Hi Abdel
toggle quoted messageShow quoted text
I performed testing on your module. The way information is announced when moving around the component is much better. However I still found 2 bugs or at least strange behaviour: 1. Set the date field to 30/05/2010 With left arrow,go on the day field (if not already) Press three times the right arrow to go to month, year and finally cycle back to day field. Press up arro. The date moves to 31/05/2010 but the day field change is not vocalized. 2. Put the date on 31/03010 Select the month field with left / right arrows Press Home to change 03 to 01 (mars to january) The day has moved to 28 whereas I would have expected it to stay at 31. For these two points, the configuration is : * Enable announcements of the date field labels : checked * Enable announcements of the current date field value only when moving vertically : unchecked Cheers Cyrille
-----Message d'origine-----
De : nvda-addons@nvda-addons.groups.io [mailto:nvda-addons@nvda-addons.groups.io] De la part de Abdel Envoyé : dimanche 1 octobre 2017 15:52 À : nvda-addons@nvda-addons.groups.io Objet : Re: [nvda-addons] dayOfTheWeek-3.0-dev #AddonTesting Hi all, I present the latest 3.0-dev version of the dayOfTheWeek add-on which still has the same features but the code has been greatly simplified thanks to Noelia. Noelia has added an increment attribute to the overlay class whose value is checked when the fields are calculated. She also added an event_valueChange function that prevents from using statements using speech.speechMode. Thank you Noelia, it works very well! The download link: https://github.com/abdel792/dayOfTheWeek/releases/download/v3.0-dev/dayOfTheWeek-3.0-dev.nvda-addon Users, do your tests and do not hesitate to tell us if any bugs have been found. If you want to review the latest changes: https://github.com/abdel792/dayOfTheWeek/compare/9b4f96b293ca...5bfa56ca4d07 Thanks. Cheers, Abdel. Le 01/10/2017 à 09:39, Noelia Ruiz a écrit : Hi, this is tricky. --- L'absence de virus dans ce courrier électronique a été vérifiée par le logiciel antivirus Avast. https://www.avast.com/antivirus
|
|
Re: openLinkWith put links in a dialog to be opened with
Ibrahim Hamadeh
hello james
toggle quoted messageShow quoted text
Thank you really for your feedback and observations I appreciate that much I'll take all your points into consideration, and act on those who are easier to be acted on first just a remark for the setting to close the dialog or not, after a link has been activated I thought that we can't decide previously the level of importance of links in the list sometimes we care for more than one link, and other times only for one but we can't decide the importance of links previously, and for that I left it opened. As for your other thoughts and observations, I will think of them all are valuable, and spots the light on beautiful ideas thank you for your time and notices my greetings for you ibrahim
On 02-Oct-17 12:35 PM, James Scholes wrote:
Some initial observations:
|
|
Re: openLinkWith put links in a dialog to be opened with
James Scholes
Brian's Mail list account via Groups.Io wrote:
Hi so where is the version with the corrected regular expression filter?https://github.com/ibrahim-s/openLinkWith/releases/download/v1.0/OpenLinkWith-1.0.nvda-addon Regards, James Scholes https://twitter.com/JamesScholes
|
|
Re: openLinkWith put links in a dialog to be opened with
Brian's Mail list account
Hi so where is the version with the corrected regular expression filter?
toggle quoted messageShow quoted text
Its not on the old download link. Brian bglists@blueyonder.co.uk Sent via blueyonder. Please address personal email to:- briang1@blueyonder.co.uk, putting 'Brian Gaff' in the display name field.
----- Original Message -----
From: "Brian's Mail list account via Groups.Io" <bglists=blueyonder.co.uk@groups.io> To: <nvda-addons@nvda-addons.groups.io> Sent: Monday, October 02, 2017 4:35 PM Subject: Re: [nvda-addons] openLinkWith put links in a dialog to be opened with Hmm, well I like to have a second or a third go at it as many links these days are impenetrable for what they actually are for.
|
|
Re: openLinkWith put links in a dialog to be opened with
Brian's Mail list account
Hmm, well I like to have a second or a third go at it as many links these days are impenetrable for what they actually are for.
toggle quoted messageShow quoted text
Brian bglists@blueyonder.co.uk Sent via blueyonder. Please address personal email to:- briang1@blueyonder.co.uk, putting 'Brian Gaff' in the display name field.
----- Original Message -----
From: "James Scholes" <james@jls-radio.com> To: <nvda-addons@nvda-addons.groups.io> Sent: Monday, October 02, 2017 3:03 PM Subject: Re: [nvda-addons] openLinkWith put links in a dialog to be opened with Brian's Mail list account via Groups.Io wrote:In the case of not checking the browser mentioned elsewhere, does this cause an issue?No, but it's a redundant check which involves actively querying the file system. If a user is only ever going to use their default browser, it's unnecessary.It might be a nice idea to state in the dialogue which browser you think is set as default on the machine in some way.The add-on uses Windows functionality similar to that used by the Run dialog to open the links, to ensure that even if you have a completely bizarre application registered as the default browser it will still work. In that sense, there should never be a time when the add-on gets it wrong.I don't want the dialogue to close by default either as I often use this to get every link in a so called newsletter opened in a new tabPerhaps the dialog could offer a multiselect list or an "Open All" button.after all esc dismisses it in any case, so where is the hassle?Don't get me wrong, this isn't a big complaint. Just an initial observation that, more often than not, my personal use case is to open one link. At that point I'd like the dialog to be dismissed so I don't have to do it myself. It's laziness on my part, plain and simple, but laziness that could easily be facilitated by a single boolean setting.
|
|
NVDA scripting - Typing in a console
Cyrille
Hello I have a question regarding NVDA scripting. For now I don't plan to create an add-on, but I just would like to make personal shortcut scripts. Let me know if this mailing-list is suited for such questions or let me know if I should go to another best suited list. Below is my question: I am using Matlab in console mode. But it could be any othyer program having a window acting as a console such as the NVDA Python console for example. I would like to issue automatically some commands when I press a shortcut. Let-s take a simple example: I would like to make NVDA type "dbquit" (without quotes) and then "Enter" key in the console when pressing the shortcut Shift+Escape. For this purpose, I wrote the following function: #Code start from keyboardHandler import KeyboardInputGesture as kig def sendCommand(s): kig.fromName('Home').send() kig.fromName('Control+Delete').send() for c in s: kn = kig.fromName(c) kn.send() kig.fromName('Enter').send() #Code end This fonction is called from the script associated to Shift+Escape as follows: sendCommand("dbquit") However the command "dbuit" is typed in the console in uppercase, because the shortcut uses Shift modifier... What would be the best way to make NVDA type a text automatically when pressing a shortcut. Thanks in advance. Cheers Cyrille
|
|
Re: openLinkWith put links in a dialog to be opened with
James Scholes
Brian's Mail list account via Groups.Io wrote:
In the case of not checking the browser mentioned elsewhere, does this cause an issue?No, but it's a redundant check which involves actively querying the file system. If a user is only ever going to use their default browser, it's unnecessary. It might be a nice idea to state in the dialogue which browser you think is set as default on the machine in some way.The add-on uses Windows functionality similar to that used by the Run dialog to open the links, to ensure that even if you have a completely bizarre application registered as the default browser it will still work. In that sense, there should never be a time when the add-on gets it wrong. I don't want the dialogue to close by default either as I often use this to get every link in a so called newsletter opened in a new tabPerhaps the dialog could offer a multiselect list or an "Open All" button. after all esc dismisses it in any case, so where is the hassle?Don't get me wrong, this isn't a big complaint. Just an initial observation that, more often than not, my personal use case is to open one link. At that point I'd like the dialog to be dismissed so I don't have to do it myself. It's laziness on my part, plain and simple, but laziness that could easily be facilitated by a single boolean setting. Regards, James Scholes https://twitter.com/JamesScholes
|
|
Re: Basic scripting question
Rui Fontes
Hello!
The course is in the group devlearning@nvda.groups.io, a sub-group of the main NVDA discussion group, nvda@nvda.groups.io. You need to be a member of the main group to subscrib the sub-group. Rui -----Mensagem Original----- De: ramamariano via Groups.Io Data: 30 de setembro de 2017 20:54 Para: nvda-addons@nvda-addons.groups.io Assunto: Re: [nvda-addons] Basic scripting question Dear Rui: 1 - I was not aware of the Python/NVDA Addons course. Do you have any link to that? 2 - Sadly, I try the line you send me with the same results, saying: I get the message "Pause" when I press the letter P inside the app, but also I get the message when I'm in an edit field from the app. Any suggestion is welcome, and thanks for the reply. Salutes! Mariano.
|
|
Re: An add-on that makes NVDA to read automaticaly the subthreaders of YouTube Video when pressing a hotkey.
#addonrequest
Hello Timothy! Can you tell me how can you do this without an add-on? Thanks!
|
|
Re: Emoticons 5.7
#addonrelease
Brian's Mail list account
PS does the insert-shift-f key combination get used by anything else as this is the one I've enabled for this add on.
toggle quoted messageShow quoted text
Brian bglists@blueyonder.co.uk Sent via blueyonder. Please address personal email to:- briang1@blueyonder.co.uk, putting 'Brian Gaff' in the display name field.
----- Original Message -----
From: "xingkong" <dingpengyu06@gmail.com> To: <nvda-addons@nvda-addons.groups.io> Sent: Sunday, October 01, 2017 9:15 PM Subject: Re: [nvda-addons] Emoticons 5.7 #AddonRelease hi, I have initialized NVDA, but also suggested that the installation error.
|
|
Re: openLinkWith put links in a dialog to be opened with
Brian's Mail list account
OK will do. In the case of not checking the browser mentioned elsewhere, does this cause an issue? It might be a nice idea to state in the dialogue which browser you think is set as default on the machine in some way. I don't want the dialogue to close by default either as I often use this to get every link in a so called newsletter opened in a new tab and then I can really decide which ones I am interested in actually reading by simply switching between them or by selecting the next one in the list, it gives flexibility, is what I'm saying after all esc dismisses it in any case, so where is the hassle?
toggle quoted messageShow quoted text
Its the kind of add on that should not be too complicated with too many options. I'd use it like the elements list that you can get on big web sites myself but on newsletters often in Word with hidden addresses which make it hard to get them out. It certainly lets me see all those redundant links you often find in such newsletters that just say link link link and you can see which are unique and which are just copies of the same one. Brian bglists@blueyonder.co.uk Sent via blueyonder. Please address personal email to:- briang1@blueyonder.co.uk, putting 'Brian Gaff' in the display name field.
----- Original Message -----
From: "Ibrahim Hamadeh" <ibra.hamadeh@hotmail.com> To: <nvda-addons@nvda-addons.groups.io> Sent: Monday, October 02, 2017 1:32 AM Subject: Re: [nvda-addons] openLinkWith put links in a dialog to be opened with hello brian and all
|
|
Re: openLinkWith put links in a dialog to be opened with
James Scholes
Some initial observations:
1. Don't include the word "dialog" in the dialog title as it makes NVDA speak the word twice. 2. Traditionally, the OK button should come before the Cancel button in the tab order. 3. It would be nice to have a setting which allowed the user to specify that the dialog should close after a link had been activated. 4. Personally, I'm probably only ever going to use this to extract links from text and open one of them using my default browser. So I think it's a bit inefficient to check what browsers I have installed every time I activate the dialog. I'm not really sure what the solution to this could be, but some possible thoughts: A. Have two assignable scripts: one to offer a choice of browser, one to just present a list of links with an OK button. B. Show the buttons to open a link in all browsers by default, and only check whether the particular browser is installed once the user clicks one of them. C. Similar to the above, but show a drop-down of browsers instead of the buttons. At the top of the list of choices would be "Default Browser", then each browser that the add-on supports. When the user presses Enter or activates the OK button, check whether the browser is installed. If not, speak a message. If "Default Browser" is selected when they press OK, just use webbrowser.open. Those are just some thoughts for improvement, but I really do like the add-on. Often, I get sent links to articles with the links embedded in the middle of the text, e.g. copied tweets, and this makes it really easy to act on them. Regards, James Scholes https://twitter.com/JamesScholes
|
|
clipContentsDesigner 6.5-dev
#addontesting
Noelia Ruiz
Hi, in about 20 minutes, clipContentsDesigner 6.5-dev will be available for testing.
In the previous development version 6.4-dev, the text was not copied if the confirmation request is active, in fields where the selection is lost when opening a dialog, for instance, the NVDA's log viewer. This is fixed now. Please test it and provide any bug or suggestion. Webpage: https://addons.nvda-project.org/addons/clipContentsDesigner.en.html Repo: https://github.com/nvdaes/clipContentsDesigner Diffs: https://github.com/nvdaes/clipContentsDesigner/compare/0e4f990e93c2...a5c9d928a1e8 Cheers
|
|
Re: Emoticons 5.7
#addonrelease
Noelia Ruiz
Hi xingkong, I suggest you these tests:
toggle quoted messageShow quoted text
1. Set the level of NVDA's log to debug and provide it to know if other add-ons or something can be interacting. 2. Go to the configuration folder of NVDA and, if you have an emoticons.ini file, please remove it and try to install the add-on. 3. Have you issues when you try to install other add-ons? If so, what's the problem you find? I can't reproduce this bug. If someone can, please comment it here. Thanks
El 01/10/2017 a las 22:27, xingkong escribió:
INFO - __main__ (04:25:13.690):
|
|
Re: openLinkWith put links in a dialog to be opened with
Ibrahim Hamadeh
hello brian and all
toggle quoted messageShow quoted text
Really there was a bug in the regular expression responsible for parsing the text and it is now hopefully fixed the link for the addon is: https://github.com/ibrahim-s/openLinkWith/releases/download/v1.0/OpenLinkWith-1.0.nvda-addon you can test it clearly in the readme.md file in nvda addon template folder select all and press the addon command you will notice that all urls are cleanly extracted. thank you best regards ibrahim
On 01-Oct-17 5:52 PM, Ibrahim Hamadeh wrote:
hello Brian
|
|
Re: An add-on that makes NVDA to read automaticaly the subthreaders of YouTube Video when pressing a hotkey.
#addonrequest
Timothy
toggle quoted messageShow quoted text
You can get NVDA to do this sometimes, but it is hit or miss depending on a
few factors. I'm not a web developer, so don't really know how that's actually
implemented. This would probably more appropriate for the axSGrease scripts that
NV Access has as a GitHub project: Timothy
|
|
Re: Emoticons 5.7
#addonrelease
INFO - __main__ (04:25:13.690):
Starting NVDA INFO - core.main (04:25:14.411): Config dir: C:\Users\dpy\Downloads\新建文件夹\userConfig INFO - config.ConfigManager._loadConfig (04:25:14.411): Loading config: .\userConfig\nvda.ini INFO - core.main (04:25:14.464): NVDA version 2017.3 INFO - core.main (04:25:14.464): Using Windows version 10.0.15063 workstation INFO - core.main (04:25:14.464): Using Python version 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 20:42:59) [MSC v.1500 32 bit (Intel)] INFO - core.main (04:25:14.464): Using comtypes version 0.6.2 INFO - synthDrivers.espeak.SynthDriver.__init__ (04:25:15.006): Using eSpeak NG version 1.49.1 dev INFO - synthDriverHandler.setSynth (04:25:15.420): Loaded synthDriver espeak INFO - core.main (04:25:15.420): Using wx version 3.0.2.0 msw (classic) INFO - brailleInput.initialize (04:25:15.421): Braille input initialized INFO - braille.initialize (04:25:15.423): Using liblouis version 3.2.0 INFO - braille.BrailleHandler.setDisplayByName (04:25:15.423): Loaded braille display driver noBraille, current display has 0 cells. WARNING - core.main (04:25:15.635): Java Access Bridge not available INFO - _UIAHandler.UIAHandler.MTAThreadFunc (04:25:15.640): UIAutomation: IUIAutomation3 INFO - core.main (04:25:16.638): NVDA initialized WARNING - characterProcessing.SpeechSymbols.load (04:25:17.177): Invalid line in file locale\zh\symbols.dic: ﹩ 錢號all INFO - updateCheck.AutoUpdateChecker._started (04:25:17.213): Performing automatic update check INFO - config.ConfigManager.save (04:25:21.736): Base configuration saved ERROR - gui.addonGui.AddonsDialog.installAddon (04:25:40.752): Error opening addon bundle from C:\Users\dpy\Downloads\emoticons-5.7.nvda-addon Traceback (most recent call last): File "gui\addonGui.pyo", line 110, in installAddon File "addonHandler.pyo", line 470, in __init__ File "addonHandler.pyo", line 566, in __init__ File "configobj.pyo", line 1219, in __init__ File "configobj.pyo", line 1302, in _load ConfigObjError: Parsing failed with several errors. First error at line 1.
|
|
Re: Emoticons 5.7
#addonrelease
hi, I have initialized NVDA, but also suggested that the installation error.
|
|
Re: An add-on that makes NVDA to read automaticaly the subthreaders of YouTube Video when pressing a hotkey.
#addonrequest
Hello Marco, I agree with you. This might be useful for those who like to watch movies on YouTube into languages they don't speak.
|
|
Re: Recalling add-ons
#addonrequestreview
Mohammadreza Rashad
Exactly. I mean a configurable threshold relative to end of line could
toggle quoted messageShow quoted text
be added which can notify the user before reaching the end of line. ۱۳۹۶-۰۷-۰۹ ۲۱:۱۲ +۰۳:۳۰ گرینویچ, Noelia Ruiz <nrm1977@gmail.com>:
Sure, but my idea was that you add 80, for instance, if the limit of the --
Best wishes, Mohammadreza Rashad
|
|