John Salerno wrote: > What is dir(), btw? Is it a > class for creating the application?
Heh heh, how quickly I forget about built-ins. :) Try something like this: import Tkinter as tk root = tk.Tk() label = tk.Label(root, text='Hello world!') label.pack() root.mainloop() -- http://mail.python.org/mailman/listinfo/python-list