Re: Question about using accessible_output in python.

2018-02-24 Thread AudioGames . net Forum — Developers room : Hrvoje via Audiogames-reflector


  


Re: Question about using accessible_output in python.

Yes, Python3 has made some major changes with import statements, so that's why older accessible output doesn't work with Python3. I still have a backup that works for Python3, so I can upload it.

URL: http://forum.audiogames.net/viewtopic.php?pid=353595#p353595





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

Re: Question about using accessible_output in python.

2018-02-24 Thread AudioGames . net Forum — Developers room : AnamLion via Audiogames-reflector


  


Re: Question about using accessible_output in python.

so most probably I have to again revert back to python 2.7 isn't?

URL: http://forum.audiogames.net/viewtopic.php?pid=353579#p353579





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

Re: Question about using accessible_output in python.

2018-02-24 Thread AudioGames . net Forum — Developers room : AnamLion via Audiogames-reflector


  


Re: Question about using accessible_output in python.

if any buddy  has compatible version of Accessible_output for python 3.40, so can I get it?

URL: http://forum.audiogames.net/viewtopic.php?pid=353580#p353580





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

Re: Question about using accessible_output in python.

2018-02-23 Thread AudioGames . net Forum — Developers room : CAE_Jones via Audiogames-reflector


  


Re: Question about using accessible_output in python.

The version I'm using is with Python 2.7, so something might have changed in the meantime.

URL: http://forum.audiogames.net/viewtopic.php?pid=353566#p353566





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

Re: Question about using accessible_output in python.

2018-02-23 Thread AudioGames . net Forum — Developers room : Hrvoje via Audiogames-reflector


  


Re: Question about using accessible_output in python.

You are probably using version that isn't compatible with Python3. The latest one that can be found on QContinuum can be used with Python3, but unfortunately QContinuum server is down for several days: 502 bad gateway.

URL: http://forum.audiogames.net/viewtopic.php?pid=353559#p353559





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

Re: Question about using accessible_output in python.

2018-02-23 Thread AudioGames . net Forum — Developers room : AnamLion via Audiogames-reflector


  


Re: Question about using accessible_output in python.

Hi bro, I have exactly copied those two lines as You had given mebut, nothing is happening.it again gives error of 'no module name outputs'

URL: http://forum.audiogames.net/viewtopic.php?pid=353536#p353536





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

Re: Question about using accessible_output in python.

2018-02-23 Thread AudioGames . net Forum — Developers room : CAE_Jones via Audiogames-reflector


  


Re: Question about using accessible_output in python.

Did you include the s at the end of outputs?

URL: http://forum.audiogames.net/viewtopic.php?pid=353494#p353494





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

Re: Question about using accessible_output in python.

2018-02-23 Thread AudioGames . net Forum — Developers room : AnamLion via Audiogames-reflector


  


Re: Question about using accessible_output in python.

Hi bro I tried that but, it gives error like,  import error:  no Module name  'output'what should I do then?

URL: http://forum.audiogames.net/viewtopic.php?pid=353454#p353454





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

Re: Question about using accessible_output in python.

2018-02-22 Thread AudioGames . net Forum — Developers room : AnamLion via Audiogames-reflector


  


Re: Question about using accessible_output in python.

Hey bro can I ad you on skipe?

URL: http://forum.audiogames.net/viewtopic.php?pid=353430#p353430





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

Re: Question about using accessible_output in python.

2018-02-22 Thread AudioGames . net Forum — Developers room : AnamLion via Audiogames-reflector


  


Re: Question about using accessible_output in python.

Thanks so much bro

URL: http://forum.audiogames.net/viewtopic.php?pid=353429#p353429





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

Re: Question about using accessible_output in python.

2018-02-22 Thread AudioGames . net Forum — Developers room : CAE_Jones via Audiogames-reflector


  


Re: Question about using accessible_output in python.

If all you want is speech, prioritizing the screen reader and defaulting to installed voices if no screen reader can be found, you only need like two lines:from accessible_output2.outputs.auto import Autospeech=Auto()speech.output("Hello!")You can also use speech.speak("Hello!") for only speech, and speech.braille("Hello!") if you want braille.

URL: http://forum.audiogames.net/viewtopic.php?pid=353426#p353426





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

Re: Question about using accessible_output in python.

2018-02-22 Thread AudioGames . net Forum — Developers room : CAE_Jones via Audiogames-reflector


  


Re: Question about using accessible_output in python.

If all you want is speech, prioritizing the screen reader and defaulting to installed voices if no screen reader can be found, you only need like two lines:from accestsible_output2 import autospeech = auto.Auto()speech.speak("Hello!")(Wrote from memory, will edit in a few minutes if I got something wrong.)

URL: http://forum.audiogames.net/viewtopic.php?pid=353426#p353426





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

Question about using accessible_output in python.

2018-02-22 Thread AudioGames . net Forum — Developers room : AnamLion via Audiogames-reflector


  


Question about using accessible_output in python.

Hi, I am learning python since 6 month, and I can perform basic operations.now I want to use accessible output in python programs.  How can I do that? are there any complete tutorials available?any help will be appreciated

URL: http://forum.audiogames.net/viewtopic.php?pid=353420#p353420





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