Tagged Questions
The tix tag has no wiki summary.
8
votes
2answers
2k views
Tix documentation for Python
I've recently starting playing around with Tix in Python, and I'm distressed at the lack of Python documentation for it online. Both the tutorial and book have plenty of code examples in Tcl and none ...
7
votes
3answers
1k views
Colour chart for Tkinter and Tix Using Python
This isn't a question but an answer to help others that might run into this issue.
I wanted to visualise some basic colours so I could pick the appropriate ones for my colour scheme.
I couldn't find ...
2
votes
2answers
731 views
How to create a tree view with checkboxes in Python
I've been using Tkinter and Tix to write a small program.
I'm at a point where I need a tree view with checkboxes (checkbuttons) so I can select items from the tree view.
Is there an easy way to do ...
2
votes
1answer
160 views
Tix ComboBox causes python2.7 to crash
I've been using Tix to create a comboBox and it causes an intermittent crash if the entry box is left empty.
I'm new to Python and very new to GUI programming so I've been using example to teach ...
2
votes
1answer
177 views
how to scroll a Tix ScrolledWindow
Using Python, how can I programmatically scroll (not using the scrollbars) the window in a Tix ScrolledWindow? The normal way would be to call xview / yview, but those calls do not seem to be ...
1
vote
3answers
420 views
Tix and Python 3.0
Has anyone seen anything in Tix work under python 3.0? I've tried to work through the examples but when creating anything it states that cnf is unsubscriptable.
I also noticed that none of the Dir ...
1
vote
2answers
1k views
How to update a Tix.ComboBox's text?
I have a Tix.ComboBox with an editable text field. How do I force the variable holding the value for the text to update?
Let me give a more concrete explanation. I have a combo box and a button. When ...
0
votes
0answers
170 views
Python 2.7.2 tix dll
I am trying to use py2exe with Python 2.7.2 to create an executable that uses Tix. All the docs say that I have to include a tix dll but there doesn't appear to be one and tix is working fine. There ...
0
votes
1answer
73 views
Tkinter and Tix demo or showcase application?
Is there a showcase (demo) application with all Tkinter and Tix features and widgets?
For example, wxPython download includes a "wxPython Demo" application which not only demonstrates the widgets, ...
0
votes
0answers
200 views
python 3.2.1 tkinter.tix.FileEntry - sizing the dialogue?
I've written a simple GUI using python 3.2.1 and Tk/Tix. One of the widgets is a FileEntry. When the user selects the button to open a file selection dialogue - launched from the FileEntry widget - ...
0
votes
1answer
317 views
python threading and tkinter.tix.NoteBook tabs not accessible beyond first open tab
In the following example I'm unable to write to the other tabs aside from the open-by-default Log tab:
#!/usr/bin/python
import os, sys
import threading
import time
from itertools import count
...
0
votes
1answer
65 views
Can I bind a tixBalloon Widget to a Text widget tag?
I am wanting to mimic the behavior of the 'abbr' tag of HTML in a tkinter Text widget. The Tix Balloon widget looks like it would be a perfect fit, but I can't figure out how to bind it to a text tag ...
0
votes
1answer
74 views
How do I get rid of the arrow in a Tix.Balloon widget?
When I use the standard Tix.Balloon widget, bind it to a button and use a balloonmsg, I get the tooltip over the button, but I also get a stupid looking arrow inside the tooltip. (See the demo code ...
0
votes
1answer
1k views
Python Tkinter Tix: How to use ScrolledWindow with grid in Tix NoteBook
I'm adding several widgets to a Frame which is located in a tix.NoteBook. When there are too much widgets to fit in the window, I want to use a scrollbar, so I put tix.ScrolledWindow inside that Frame ...