Re: [Tkinter-discuss] Convert Tk command string to Python callback

2005-11-17 Thread Michael Lange
On Wed, 16 Nov 2005 11:45:17 -0800 "Russell E. Owen" <[EMAIL PROTECTED]> wrote: > In article <[EMAIL PROTECTED]>, > Michael Lange <[EMAIL PROTECTED]> wrote: > > > ...I just wondered if there is a way to ...access the associated python > > callback from the tk command > > string... > > I hope

Re: [Tkinter-discuss] Convert Tk command string to Python callback

2005-11-16 Thread jepler
I still don't understand the problem, but I blew away the database of wiki users and was able to create a new user. You'll have to do the same before editing pages. Pleas let me know if it still doesn't work for you. Thanks, Jeff pgpdO3OrQbkim.pgp Description: PGP signature ___

Re: [Tkinter-discuss] Convert Tk command string to Python callback

2005-11-16 Thread jepler
On Thu, Nov 17, 2005 at 01:12:24AM +, Cameron Laird wrote: > I've forgotten how to edit Wiki pages. More precisely, I don't > know what to do so the Tkinter Wiki pages appear to me as other- > than-immutable. Who can help? Jeff? It looks like something is wrong on my end. I migrated the Tk

Re: [Tkinter-discuss] Convert Tk command string to Python callback

2005-11-16 Thread Cameron Laird
I've forgotten how to edit Wiki pages. More precisely, I don't know what to do so the Tkinter Wiki pages appear to me as other- than-immutable. Who can help? Jeff? ___ Tkinter-discuss mailing list Tkinter-discuss@python.org http://mail.python.org/mailm

Re: [Tkinter-discuss] Convert Tk command string to Python callback

2005-11-16 Thread Russell E. Owen
In article <[EMAIL PROTECTED]>, Michael Lange <[EMAIL PROTECTED]> wrote: > ...I just wondered if there is a way to ...access the associated python > callback from the tk command > string... I hope this helps. I've appended code that registers python functions to be called from tcl/tk. This is

[Tkinter-discuss] Convert Tk command string to Python callback

2005-11-14 Thread Michael Lange
Hello everyone, I need to to pass attributes of an event (or maybe the event instance as a whole) to another callback. A pseudo-code function to illustrate what I want to achieve: def deliver_event(self, event): binding = self.tag_bind(tagOrId, '') if binding: bin