dayOfTheWeek
Sergio Gómez
Hi Abdel.
I inform you that there is an error in dayOfTheWeek. Having the checkboxes enable selector accessibility, and announce when scrolling vertically I think, sometimes says the number 1601. Having the first and third boxes checked in the options, with the ads of the tags of the second option disabled.
I hope it serves the information.
Greeting Enviado desde Correo para Windows 10
|
|
mp3directcut-20.11-dev
#addontesting
Abdel
Hi everyone,
Download link:
|
|
Re: What is the best way to get all gestures used in NVDA?
Noelia Ruiz
Hi, imo, inputCore.manager.getAllGestureMappings would be the best method.
toggle quoted messageShow quoted text
To see gestures ich don't appear in the dialog, I would test to create references to different objects to be used as the parameter of the above method. Nice weekend to you. Cheers 2020-11-20 23:02 GMT+01:00, Oleksandr Gryshchenko <kita.zup+groups@gmail.com>:
Hi colleagues,
|
|
Re: Unmute addon request.
Kevin Cussick
Hi, thanks again for Your work on this very good addon. have downloaded it and installed it and will take a look at the new settings later maybe not to night but as soon as I can I will again thanks for Your work. I use this addon every day in life. I hope that one day it may be added to core.
toggle quoted messageShow quoted text
On 20/11/2020 21:53, Oleksandr Gryshchenko wrote:
Hi friends,
|
|
What is the best way to get all gestures used in NVDA?
Oleksandr Gryshchenko
Hi colleagues,
I have question for those who well know the structure of NVDA components. If you could, Please tell me how we can programmatically view all the keyboard commands used in NVDA and all installed add-ons. All I found was to use the inputCore.manager.getAllGestureMappings() method. Then recursively view the results of this method. Bound keyboard commands will be in the "gestures" attribute. Is this the best way to get all used gestures? Are there other ways to solve this issue? How to get keyboard commands that are not displayed in the "Input Gestures" dialog? Grateful for any tips. Have a nice week-end! Oleksandr
|
|
Re: Volume Adjustment add-on
#review_request
Oleksandr Gryshchenko
Hi colleagues,
Unfortunately, I was unable to resolve the issue that caused errors on some systems when enumerating available audio devices. It looks like the reason is in the PyCaw module used in the add-on. In main repository there are open issues that indicate about this: * https://github.com/AndreMiras/pycaw/issues/15 * https://github.com/AndreMiras/pycaw/issues/19 So I moved this advanced feature of the add-on to a separate option and noticed it as an experimental feature. If desired, you can enable this check box in the add-on settings panel, as on some systems this feature still works correctly. Another strange behavior occurs when using Skype. When it starts, two or three audio sessions appear, duplicating each other. So I added a checkbox in the settings panel to be able to hide duplicate audio sessions. As for adjusting the volume for the Skype process - for some reason it works from time to time... Unfortunately, I have not yet been able to understand the reason for this behavior. I have tested the add-on with various programs and I must note that such strange behavior occurs only when using Skype. Also, one user created a feature request to quickly switching the output to other audio devices: https://github.com/grisov/NVDA_Volume_Adjustment/issues/6 NVDA has a standard dialog box that allows you to do this, which is called using NVDA+Ctrl+S. The add-on allows now to quickly switch the output of NVDA sounds simply by pressing NVDA+Windows+PageUp or NVDA+Windows+PageDown. Updated version of Volume Adjustment add-on is here: https://github.com/grisov/NVDA_Volume_Adjustment/releases/download/v1.1/volumeAdjustment-1.1.nvda-addon I wish everyone a good week-end! Keep yourselves. Oleksandr
|
|
Re: Unmute addon request.
Oleksandr Gryshchenko
Hi friends,
Another feature has been added to the updated version of Unmute. I hope it will be useful. At startup, the add-on can check on which audio device the output of NVDA sound is performed. And, if this device differs from the default device, the output automatically switches to the audio device installed in the system as the main one. Of course, it is possible to disable this feature in the add-on settings panel. https://github.com/grisov/Unmute/releases/download/v1.5/unmute-1.5.nvda-addon Have a nice weekend! Oleksandr
|
|
Jumping to the first attribute change in a document
Mario Loreti
Hi!
I am new to this group, I hope to participate with my contribution. I start with a little question: is there an addon that could allow to jump through the various attributes change in a text? Something to jump directly to a bold sentence contained in a document, for example. Thank you. -- Mario Loreti
|
|
Code help with Python
Babbage - Ahmed
Hello dear developers, I would greatly appreciate some help with code. Here's the deal:
I have a dictionary, right below __gestures = { "some_gesture": someObject.someFunction(x,y), "another_gesture": anotherObject.someFunction(x,y), "final_gesture": finalObject.someFunction(x,y) } #this is my function, which performs a mouse click on specific coordinates on the screen def someFunction(x,y): mouseClick(x,y) #this is my object. The attributes, x and y, are coordinates myObject = Object(20, 20) otherObject = Object(30,40) The point of this code is to perform someFunction() on a certain gesture on the keyboard, like "NVDA+shift+a". In this example, I have 3 different gestures, and I want them all to do the function of someFunction(x,y). Every object has different x and y coordinates, so every object will click the mouse on different parts of the screen. To illustrate another example, check this explanation: __gestures = { "when I press shift+a": "perform someFunction(30, 40", "when I press shift+b": "perform someFunction(50, 30)", "when I press shift+c": "perform someFunction(40, 40)" }
|
|
Re: get css selector of focused element
Andy B.
I never figured out how to get it to work inside of an NVDA addon either. You could try bs4, cssutils, or tinycss. Unfortunately, they all require xml.dom. NVDA excluded it from its Python library for some strange reason, and providing a prebuilt version of xml.etree seems impossible. If you can figure it out, I can continue work on developer toolkit.
From: nvda-addons@nvda-addons.groups.io <nvda-addons@nvda-addons.groups.io> On Behalf Of Stefan Moisei via groups.io
Sent: Tuesday, November 17, 2020 4:58 PM To: nvda-addons@nvda-addons.groups.io Subject: [nvda-addons] get css selector of focused element
Hi, Is it possible to get a css selector for the focused web element? I tried IA2 attribeutes and iSimpleDomNode, but I only managed to get the class and id. this is not enough, since web devs hardly respect the rule of unique ID’s. Doing it with js is not reliable either, as, even with nvda+8 turned off, focus is not always correctly found. Thanks,
|
|
get css selector of focused element
Stefan Moisei
Hi,
Is it possible to get a css selector for the focused web
element? I tried IA2 attribeutes and iSimpleDomNode, but I only
managed to get the class and id. this is not enough, since web devs hardly
respect the rule of unique ID’s.
Doing it with js is not reliable either, as, even with nvda+8 turned
off, focus is not always correctly found.
Thanks,
|
|
FW: [nvda-translations] VLC translation system errors fixed?
Hi all, For translators: you should have received an email from Reef Turner a few hours ago regarding translations system update going forward. Please do test updated VLC add-on translation workflow and report your findings to Reef, either through this list or replying to Reef’s post on VLC add-on translations. Cheers, Joseph
From: nvda-translations@groups.io <nvda-translations@groups.io> On Behalf Of Reef Turner
Sent: Monday, November 16, 2020 2:20 AM To: nvda-translations@groups.io Subject: [nvda-translations] VLC translation system errors fixed?
Hi translators,
|
|
Re: Introducing my first addon Packager of complements.
Sergio Gómez
Hello Rémy!
Oka, thank you very much for the information. I'll see the documentation.
Cheers Enviado desde Correo para Windows 10
De: Rémy Ruiz
Hi Sergio, .pot file is used to create a new catalog for message and can be translated in your currently language using poedit. This one is created using this Paul's addon. This buildVars.py file is required for to created this new addon. See documentation in spanish in this Paul's addon. Cheers. Rémy
Le 15/11/2020 à 21:41, Sergio Gómez a écrit :
|
|
Re: Introducing my first addon Packager of complements.
Rémy Ruiz
Hi Sergio, .pot file is used to create a new catalog for message and can be translated in your currently language using poedit. This one is created using this Paul's addon. This buildVars.py file is required for to created this new addon. See documentation in spanish in this Paul's addon. Cheers. Rémy Le 15/11/2020 à 21:41, Sergio Gómez a
écrit :
|
|
Re: Introducing my first addon Packager of complements.
Sergio Gómez
Hello Paul
Well, I have seen the feature. But what is a .pot for example? And the .py file you can create, what is it for?
Thank you
Cheers Enviado desde Correo para Windows 10
De: bering.p
Hi Sergio. Paul.
Le 14/11/2020 11:39, Sergio Gómez a écrit :
|
|
Re: Introducing my first addon Packager of complements.
Rémy Ruiz
Hello Paul, Is not the same feature. this one package all addons found in nvda's addon folder. This one is also translate in french by miself. :) Cheers. Rémy Le 15/11/2020 à 10:50, bering.p a
écrit :
Hi Sergio.
|
|
Regarding the next major release of Braille extender
Cristina Ebetiuc
Hi When will be the next Major update, I mean the one with the new functions in beta now, released? Greetings and thanks Gesendet von Mail für Windows 10
|
|
Introducing my first addon Packager of complements.
bering.p
Hi Sergio.
toggle quoted messageShow quoted text
You must install the "development tools" functionnality. With "nvda+j" and "t", you will open the "development tools" dialog. Best regards. Paul. Le 14/11/2020 11:39, Sergio Gómez a
écrit :
Hello Paul
|
|
Re: Resource Monitor 20.11 localization update, November 13th development snapshot
#addonrelease
Hi,
toggle quoted messageShow quoted text
Edge on Windows 7 is mostly to guarantee secure web browsing experience for consumers and businesses, and it won't be supported for a long time. It has nothing to do with my decision to not backport build.revision announcement to Windows 7 and 8. Cheers, Joseph
-----Original Message-----
From: nvda-addons@nvda-addons.groups.io <nvda-addons@nvda-addons.groups.io> On Behalf Of Brian's Mail list account via groups.io Sent: Saturday, November 14, 2020 1:12 AM To: nvda-addons@nvda-addons.groups.io Subject: Re: [nvda-addons] Resource Monitor 20.11 localization update, November 13th development snapshot #AddonRelease Well if Microsoft are not supporting windows 7, how is it that they produce Edge for it and continue to supply windows updates for their anti viurus system. Still there are probably no pressing items other than existing functionality to do for windows 7. I read somewhere recently that Windows 7 machines still outnumber the Windows 8 ones due to the fact most people thought that version was a mess! grin. Brian bglists@blueyonder.co.uk Sent via blueyonder. Please address personal E-mail to:- briang1@blueyonder.co.uk, putting 'Brian Gaff' in the display name field. Newsgroup monitored: alt.comp.blind-users ----- Original Message ----- From: "Joseph Lee" <joseph.lee22590@gmail.com> To: <nvda-addons@nvda-addons.groups.io> Sent: Friday, November 13, 2020 5:10 PM Subject: [nvda-addons] Resource Monitor 20.11 localization update, November 13th development snapshot #AddonRelease Hi all,
|
|
Re: Introducing my first addon Packager of complements.
Sergio Gómez
Hi Héctor and Paul!
Right, addonPackager is very good add-on. NVDAExtensionGlobalPlugin is great too. Congratulations to both of you.
Greetings
Enviado desde Correo para Windows 10
De: Héctor Javier Benítez Corredera
Well, I just looked at it and indeed NVDAExtensionGlobalPlugin has the feature of utilities for add-ons.
El 14/11/2020 a las 8:56, bering.p escribió:
|
|