Re: tkinter text event

2006-09-08 Thread Jay
Nevermind. It works. Sorry. I got my files mixed up! :-) John McMonagle wrote: > On Wed, 2006-09-06 at 17:54 -0700, Jay wrote: > > I'm having trouble with using the event with the Text object. > > When I use them together (which is a logical combination), I use this > > code: > > > > textb

Re: tkinter text event

2006-09-08 Thread Jay
That makes sense, but it's not working. John McMonagle wrote: > On Wed, 2006-09-06 at 17:54 -0700, Jay wrote: > > I'm having trouble with using the event with the Text object. > > When I use them together (which is a logical combination), I use this > > code: > > > > textbox = Text(root, wra

Re: tkinter text event

2006-09-06 Thread John McMonagle
On Wed, 2006-09-06 at 17:54 -0700, Jay wrote: > I'm having trouble with using the event with the Text object. > When I use them together (which is a logical combination), I use this > code: > > textbox = Text(root, wrap="word", height=15, width=50) > textbox.bind("", resolveGlyphs) >

tkinter text event

2006-09-06 Thread Jay
I'm having trouble with using the event with the Text object. When I use them together (which is a logical combination), I use this code: textbox = Text(root, wrap="word", height=15, width=50) textbox.bind("", resolveGlyphs) def resolveGlyphs(event): textBuf = textbox.get