Tix Select programming problem + Re: [Tutor] Tix NoteBook programming problem

2004-12-21 Thread Guillermo Fernandez Castellanos
Hi, Thanks for the answer. The intial code works indeed as soon as I put out the lines: hd.pack() gf.pack() I'm playing now with the Select buttons: import Tix def prtS(): print fruits.cget('value') def prtC(val): print val print sel.cget('value') root = Tix.Tk() fruits=Tix.Select

Re: [Tutor] Tix NoteBook programming problem

2004-12-21 Thread Michael Lange
On Tue, 21 Dec 2004 14:16:56 +0900 Guillermo Fernandez Castellanos <[EMAIL PROTECTED]> wrote: Hi Guille, thats a classic case of geometry manager conflicts. You dont need to pack the notebook pages explicitely, tix does this automagically for you and *tix does not use pack()*, so when you try to

[Tutor] Tix NoteBook programming problem

2004-12-20 Thread Guillermo Fernandez Castellanos
Hi, I'm trying to figure out how to work with Tix. The lack of examples and avalaibility of documentation for TCL only do not help :-( It does not work because when I start the program, the red and gren buttons start blinking betweeb 2 or 3 different places, no matter what the tab is. Here is th