Re: [Tutor] Fwd: Re: creating a mspaint utility

2016-01-15 Thread wolfrage8...@gmail.com
Might I also recommend Kivy as the GUI. It has a nice tutorial that is actually on this subject. https://kivy.org/docs/tutorials/firstwidget.html ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.or

Re: [Tutor] Fwd: Re: creating a mspaint utility

2016-01-15 Thread Alan Gauld
On 15/01/16 08:34, Alan Gauld wrote: > maybe you can get the mouse positions and put them in order to draw a > line,etc. Yes, that's a valid approach to building a multi-segment line. Normally you store the points in a list somewhere. > I did not want to use global variable because I am not used