On Fri, 17 Dec 2004 11:00:32 -0700 Stewart Midwinter <[EMAIL PROTECTED]> wrote:
> Has anyone got the Tile themeing engine (from http://tktable.sf.net) > working with Tkinter? If so, how'd you do it? Instructions on the > site don't give much clue for Python users. > > thanks, > -- Hi Stewart, have a look at the UsingTile page of the wiki (http://tkinter.unpythonic.net/wiki/UsingTile); the example posted there worked perfectly (at least for me): from Tkinter import * root = Tk() root.tk.call('package', 'require', 'tile') root.tk.call('namespace', 'import', '-force', 'ttk::*') root.tk.call('tile::setTheme', 'alt') v = IntVar() Radiobutton(root, text="Hello", variable=v, value=1).pack() Radiobutton(root, text="There", variable=v, value=2).pack() root.mainloop() Regards Michael _______________________________________________ Tkinter-discuss mailing list Tkinter-discuss@python.org http://mail.python.org/mailman/listinfo/tkinter-discuss