self.blue = Button(root, text="Blue",
command=self.change_text_color("blue"))
    self.blue.pack(side=LEFT)
    self.green = Button(root, text="Green",
command=self.change_text_color("green"))
    self.green.pack(side=LEFT)

To follow up, I've added a second button. Of course, it doesn't work, the
text comes out as the color of the last button. It is running the commands
in the Button line without the buttons being clicked.

More research...


-- 
Mind on a Mission <http://leamhall.blogspot.com/>
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to