Good thinking. It was indented with spaces, so I replaced them with tabs. Now I'm getting a SyntaxError: invalid syntax in root = Tk(). If I split the code in two parts (with the second one beginning in that line) and run them separately, I get no errors, but still nothing happens. <br>
<br>class Application(Frame):<br> def say_hi(self):<br> print "hi there, everyone!"<br><br> def createWidgets(self):<br> self.QUIT = Button(self)<br> self.QUIT["text"] = "QUIT"<br>
self.QUIT["fg"] = "red"<br> self.QUIT["command"] = self.quit<br><br> self.QUIT.pack({"side": "left"})<br><br> self.hi_there = Button(self)<br>
self.hi_there["text"] = "Hello",<br> self.hi_there["command"] = self.say_hi<br><br> self.hi_there.pack({"side": "left"})<br><br> def __init__(self, master=None):<br>
Frame.__init__(self, master)<br> self.pack()<br> self.createWidgets()<br><br>var root = Tk()<br>app = Application(master=root)<br>app.mainloop()<br>root.destroy()<br><br><div class="gmail_quote">On Sun, May 4, 2008 at 12:33 PM, Q4 <<a href="mailto:q4@invalid.com">q4@invalid.com</a>> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">On Sun, 4 May 2008 02:23:37 -0700 (PDT), Protected <<a href="mailto:myshelter@gmail.com">myshelter@gmail.com</a>><br>
wrote:<br>
> Hello. I'm a complete newbie trying to learn Python. I decided to try<br>
> some Tkinter examples, including the one from the library reference,<br>
> but they don't seem to do anything! Shouldn't there be, like, a<br>
> dialog?<br>
><br>
> I'm running Windows XP and using IDLE. You can assume my version of<br>
> Python is the latest.<br>
> --<br>
> <a href="http://mail.python.org/mailman/listinfo/python-list" target="_blank">http://mail.python.org/mailman/listinfo/python-list</a><br>
<br>
If you just copy the code from the python doc the indentation might be<br>
broken.<br>
Send the code and I'll take a look at it.<br>
<br>
Do you get any errors?<br>
<font color="#888888"><br>
--<br>
My website:<br>
<a href="http://www.riddergarn.dk/koder/" target="_blank">http://www.riddergarn.dk/koder/</a><br>
<br>
</font></blockquote></div><br>