Re: nvda say in Python

2016-06-16 Thread AudioGames . net Forum — Developers room : masonian via Audiogames-reflector


  


Re: nvda say in Python

Type this into your CMD window."pip install http://hg.q-continuum.net/accessible_output2/archive/tip.tar.gz"My wrapper around accessible outputhttps://www.dropbox.com/s/504pm950cw3axlw/speak.py?dl=1Usageimport speakspeak.speak("Test.")Enjoy!

URL: http://forum.audiogames.net/viewtopic.php?pid=264709#p264709





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: nvda say in Python

2016-06-09 Thread AudioGames . net Forum — Developers room : chpross via Audiogames-reflector


  


Re: nvda say in Python

Hi,use accessible_output2, that is a good library for python, nvda support and many more, jaws and so on.You can search it in google, you will find this lib very quick...Have fun!

URL: http://forum.audiogames.net/viewtopic.php?pid=263704#p263704





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

nvda say in Python

2016-06-08 Thread AudioGames . net Forum — Developers room : jonikster via Audiogames-reflector


  


nvda say in Python

Hello everybody.Please tell me how to talk nvda in Python?My code does not work:import pygletimport ctypesnvda=ctypes.windll.LoadLibrary('./nvdaControllerClient32.dll')res=nvda.nvdaController_testIfRunning()if res!=0:    errorMessage=str(ctypes.WinError(res))    ctypes.windll.user32.MessageBoxW(0,u"Error: %s"%errorMessage,u"Error communicating with NVDA",0)window=pyglet.window.Window()@window.eventdef on_key_press(symbol, modifiers):    nvdaController_speakText("Hello")@window.eventdef on_draw():    window.clear()pyglet.app.run()Traceback (most recent call last):  File "C:\2.py", line 3, in     nvda=ctypes.windll.LoadLibrary('./nvdaControllerClient32.dll')  File "C:\Python27\lib\ctypes\__init__.py", line 443, in Lo
 adLibrary    return self._dlltype(name)  File "C:\Python27\lib\ctypes\__init__.py", line 365, in __init__    self._handle = _dlopen(self._name, mode)WindowsError: [Error 126]

URL: http://forum.audiogames.net/viewtopic.php?pid=263648#p263648





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector