That's amusing. Somehow the trivial attachment got toasted. Let's try that again. Randall -------------- next part -------------- #!/usr/bin/env python from Tkinter import * root = Tk() root.option_add( "*font", "lucida 14 bold italic" ) button = Button(root, text="Quit", command=root.quit) button.pack() root.mainloop()