[Tutor] Tkinter Documentation

2013-03-30 Thread Clyde Wilson
Is there a fairly complete set of documentation on-line for Tkinter? I'm using Python 3.3 on Windows.  ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor

[Tutor] tkinter and messagebox

2013-03-29 Thread Clyde Wilson
The following code works fine under IDLE but errors when run as a standalone:   from tkinter import * root=Tk() main=Frame(root) main.grid() def doit():     messagebox.showinfo("Hello") btn1=Button(main,width=10,text="In") btn1.grid() lbl1=Label(main) lbl1.grid() btn2=Button(main,width=10,text="Out