Re: Python basic window control examples?

2020-04-17 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: Python basic window control examples? Mm, yes. It might be better to centralize those than repeat oneself. Do also check out amerikranian's guides as well, one [here] also covers windows, input, and TTS output. You can find a working copy of tolk [here], some tolk examples [here], some

Re: Python basic window control examples?

2020-04-17 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: Python basic window control examples? Mm, yes. It might be better to centralize those than repeat oneself. Do also check out amerikranian's guides as well, one [here] also covers windows, input, and TTS output. You can find a working copy of tolk [here], some tolk examples [here], some

Re: Python basic window control examples?

2020-04-17 Thread AudioGames . net Forum — Developers room : ambro86 via Audiogames-reflector
Re: Python basic window control examples? Yes. This is a Magurp example of a simple window with a button. Note that you have to install wxpython: pip install wxpythonimport wxclass MyForm(wx.Frame):    def __init__(self):        wx.Frame.__init__(self, None, wx.ID_ANY, title="Button

Re: Python basic window control examples?

2020-04-17 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: Python basic window control examples? Not to be mean or anything, but if you look through his post history you’ll see plenty. They are not that hard to find URL: https://forum.audiogames.net/post/520316/#p520316 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin

Re: Python basic window control examples?

2020-04-17 Thread AudioGames . net Forum — Developers room : Patrick via Audiogames-reflector
Re: Python basic window control examples? Yeah, it would kind of be helpful if you could throw a few examples out there, of maybe pygame and WX.Thanks! URL: https://forum.audiogames.net/post/520295/#p520295 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin

Re: Python basic window control examples?

2020-04-17 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: Python basic window control examples? It depends. If you have a good grasp of the core basics IE: variables, if/else, loops, functions, and classes, then the next thing to look into is libraries and API's to expand the function set. For windows and graphics you'll want to look

Python basic window control examples?

2020-04-16 Thread AudioGames . net Forum — Developers room : Patrick via Audiogames-reflector
Python basic window control examples? Hi all.I am making a program, but honestly I do not want to make it run from the terminal. So, I ask these questions.How do I get a basic window showing, a few text boxes where it asks a few questions, and a button that when pressed does something?I am