Re: Interaction between TclTk editor with Python code

2005-05-17 Thread Jeff Epler
One way to get a handle on some Tcl variables from Python is to create Tkinter.Variable instances with the names of the existing Tcl variables (normally, the variable names are chosen arbitrarily). Once you've done this, you can do things like add variable traces (the trace_variable method) on the

Interaction between TclTk editor with Python code

2005-05-16 Thread ab
Hi, I have an editor(front end) that is written in Tcl/Tk. It has a menu bar, menu buttons, edit boxes, listboxes & comboboxes. I am invoking this editor from an application that is written in Python. all the necessary processing is done in Python and displaying is done by the Tcl/Tk code. Now if