Questions tagged [tix]

Tix is a Tkinter Interface Extension module, which includes new widgets that are not included in the standard Tk library.

Tix (Tk Interface Extension) is a module which includes a rich set of new widgets that are not included in the standard Tk library.

Basic widgets

File Selectors

Hierarchical ListBox

Tabular ListBox

Manager Widgets

Image Types

Miscellaneous Widgets

Form Geometry Manager

67 questions
0
votes
1 answer

Tix/TkInter, FolderDialog won't stay open when clicked

I realize that the first suggestion will be to "stop using Tix", but I like some of the widgets even though they haven't been maintained since '08. One thing I've noticed is that some of the dialog boxes won't stay open. For instance I'm using a…
jwillis0720
  • 4,329
  • 8
  • 41
  • 74
0
votes
1 answer

Read status Checkbutton directly

I create Checkbutton var = IntVar() cb = Checkbutton(master, variable=var) I can set and read status checkbutton with variable var.set(1) var.get() I can set the status of a checkbutton via the checkbutton itself cb.select() cb.deselect() How can…
Arty
  • 579
  • 1
  • 8
  • 17
0
votes
2 answers

Tcl: howto change the behaviour of nameofexecutable

i have some issues with tcl from a c executable using the python interpreter. For some reason it can't load the Tix843.dll. But when running the python code directly (from python) it does work. The path/name to the dll is correct... with…
Jen
  • 1
  • 1
0
votes
1 answer

Tix ScrolledListbox not scrollable

Hello and happy new year, i'm trying to build a user interface and have a problem with the Tix.ScrolledListbox. (Python 2.6.5, Tix 8.4.3, Windows XP) I wanted to use it to show items of varying number, depending on a previous choice made by the…
0
votes
2 answers

Python: TixBalloon, using a StringVar() as the message

I'm using a TixBalloon to generate tooltips in a GUI, some of the Entry widgets I would like the tooltip or status message to be the text of the StringVar() variable. So the code would look something like: from Tkinter import * from Tix import…
David Duncan
  • 81
  • 1
  • 11
0
votes
1 answer

TixComboBox subwidget not selecting/being set to specified value on first use

I have a TixExFileSelectDialog that is associated with several Entry objects in my program; the dialog is dynamically configured so that the selected file matches the text in the Entry the dialog is being used for. However, the first time the dialog…
JAB
  • 20,783
  • 6
  • 71
  • 80
-1
votes
2 answers

pyinstaller can't find package Tix

I am trying to create an executable with pyinstaller for a python script with tix from tkinter. The following script also demonstrates the error: from tkinter import * from tkinter import tix root = tix.Tk() root.mainloop() I have Python 3.9…
Chryron
  • 121
  • 4
1 2 3 4
5