> Is it possible for me to make a command do multiple things instead of 1?
Yes, its called writing a function or method. > self.submit_bttn = Button(self, text = "Tries: 0", command = self.reveal, self.update_count) > I have tried putting the code as 2 commands on separate lines, Try putting the call to self_update inside self.reveal. Or if reveal gets called elsewhere as well then define a new method called say, self.revealAndUpdate that calls both. Alan G. _______________________________________________ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor