Tix Tutorials in Python

foxfluff picture foxfluff · Sep 19, 2012 · Viewed 8.4k times · Source

I recently have become interested in GUI programming in Python.

I have already had plenty of experience with Pygame, but find that it would be easier just to use the interface that Tkinter, Tix, etc... provide.

However, I'm having difficulty finding any decent documentation or tutorials on Tix for Python. (Unlike Pygame, which there are several guides/tutorials that I find quite nice)

Where can I find a nice tutorial? (That only assumes knowledge of Python, and hopefully no knowledge of Tk)

Answer

Brandon picture Brandon · Sep 19, 2012

Tix is a set of additional widgets that weren't originally included in the standard Tkinter distribution. Now that the improved ttk toolkit is part of Tkinter in newer Python versions (2.7 or 3.2), Tix is no longer necessary. More discussion can be found here.

A good tutorial on modern Tk can be found here.