I'm trying to run the code in "A First (Real) Example", with Tk version 8.5, and python 2.6.6, and get the following error msg:
Traceback (most recent call last):
File "C:\Users\Jaz\Desktop\voice\tk_experiments\firstexample.py", line 14, in <module>
mainframe = Frame(root, padding="3 3 12 12")
File "C:\Python26\Lib\lib-tk\Tkinter.py", line 2444, in __init__
Widget.__init__(self, master, 'frame', cnf, {}, extra)
File "C:\Python26\Lib\lib-tk\Tkinter.py", line 1932, in __init__
(widgetName, self._w) + extra + self._options(cnf))
TclError: unknown option "-padding"
I also have the latest version of tcl installed, but it's in c:\tcl and not sure at this point if it's actually being used.
I'm using Python 2.6.6 for compatibility with some other components.
Any suggestions as to why this error is occurring would be appreciated.