Re: [Tutor] How to make object disappear?

2016-05-09 Thread Lisa Hasler Waters
Thank you all so much for your guidance! We will try these out during our next class and will hopefully find success. We can't thank you enough for your support! Best, Lisa and students On Mon, May 9, 2016 at 12:34 PM, Alan Gauld via Tutor wrote: > On 09/05/16 16:55, boB Stepp wrote: > > >> cla

Re: [Tutor] How to make object disappear?

2016-05-09 Thread boB Stepp
On Mon, May 9, 2016 at 11:34 AM, Alan Gauld via Tutor wrote: > On 09/05/16 16:55, boB Stepp wrote: Did not! Lisa Hasler Waters (and her students?) wrote the code!! [Snipped her code and Alan's comments.] boB ___ Tutor maillist - Tutor@python.org To

Re: [Tutor] How to make object disappear?

2016-05-09 Thread Alan Gauld via Tutor
On 09/05/16 16:55, boB Stepp wrote: >> class dot: >> def __init__(self, canvas, color): >> self.canvas = canvas >> self.id = canvas.create_oval(15, 15, 30, 30, fill='Blue', >> tags='dot1') >> >> this = dot(canvas, 'blue') You create an inst

Re: [Tutor] How to make object disappear?

2016-05-09 Thread Peter Otten
Lisa Hasler Waters wrote: > My students and I are creating a maze game in tkinter. We are trying to > make the ball disappear when it hits the wall (black lines). We are not > having much luck. The following code has run the best, but still, the ball > does not disappear. Any advice would be appre

Re: [Tutor] How to make object disappear?

2016-05-09 Thread boB Stepp
Hello! I am not one of the experts; instead, I am one of the learners. But if you are seeking assistance on Tutor, it is necessary to post the actual code that you successfully or unsuccessfully ran. If you were unsuccessful, you need to copy and paste the full text of the error messages you rec

Re: [Tutor] How to make object disappear?

2016-05-09 Thread Bob Gailer
On May 9, 2016 8:01 AM, "Lisa Hasler Waters" wrote: > > Dear Tutor, > > My students and I are creating a maze game in tkinter. We are trying to > make the ball disappear when it hits the wall (black lines). We are not > having much luck. The following code has run the best, but still, the ball > d

[Tutor] How to make object disappear?

2016-05-09 Thread Lisa Hasler Waters
Dear Tutor, My students and I are creating a maze game in tkinter. We are trying to make the ball disappear when it hits the wall (black lines). We are not having much luck. The following code has run the best, but still, the ball does not disappear. Any advice would be appreciated! from tkinter