Re: Tkinter app=App(root) problem

2005-04-30 Thread Steve Holden
[EMAIL PROTECTED] wrote: This is my first day working with Tkinter. I'm using python2.3 on WindowsXP. I found this program and entered it. from Tkinter import * class App: def _init_(self,master): ^^ This should be __init__ (the underscores should be doubled). Python "magic meth

Tkinter app=App(root) problem

2005-04-30 Thread snoylr
This is my first day working with Tkinter. I'm using python2.3 on WindowsXP. I found this program and entered it. from Tkinter import * class App: def _init_(self,master): frame = Frame(master) frame.pack() self.button = Button(frame, text = "Quit", fg = "red", comma