Jonathan Frankel wrote:
> When I put this code (using self.tk... instead of root.tk...) in the
> __init__ method I get an error:
> 
> AttributeError: App instance has no attribute 'tk'
> 

Here's my __init__ code:

class phynchronicityApp(Tk):

     def __init__(self, parent):
         Tk.__init__(self, parent)
         try:
             self.tk.call('console', 'hide')
         except TclError:
             pass
         self.masterlist = []
         self.makePrefsDir()
         self.registerHelpBook()
         self.makeImages()
         self.readPrefs()

What version of OS X/Python/Tk are you using?

-- 
Kevin Walzer
Code by Kevin
http://www.codebykevin.com
_______________________________________________
Tkinter-discuss mailing list
Tkinter-discuss@python.org
http://mail.python.org/mailman/listinfo/tkinter-discuss

Reply via email to