Re: [Tkinter-discuss] Visual (8-bit!) tkinter Cheatsheets

2010-09-30 Thread Greg Ewing
On 01/10/10 07:47, Lion Kimbro wrote: It's pretty exhausting work, making letters pixel by pixel, Yeow! Documenting the layout parameters using diagrams is a good idea, but surely there are less masochistic ways of going about it? -- Greg ___ Tki

Re: [Tkinter-discuss] Visual (8-bit!) tkinter Cheatsheets

2010-09-30 Thread Lion Kimbro
Thanks Wayne! Please *do *include them; And I'd love to hear how they are received afterwards. By the time your presentation happens, I should have 1-3 more as well. If you have any special requests (any particular aspects of tkinter you'd like to see imaged,) let me know, and I'll crea

Re: [Tkinter-discuss] Visual (8-bit!) tkinter Cheatsheets

2010-09-30 Thread Wayne Werner
I really like those - they're quite nice! I'm going to be giving a Tkinter presentation at PyArkansas October 16, would you mind if I include these in my presentation? -Wayne On Thu, Sep 30, 2010 at 1:47 PM, Lion Kimbro wrote: > > Hi all, > > For many reasons, but mainly just for fun, I mad

[Tkinter-discuss] How do I delete the current line in a Text widget

2010-09-30 Thread Baz79
What arguments should delete() take in order to delete the current line? Thanks, Barry -- View this message in context: http://old.nabble.com/How-do-I-delete-the-current-line-in-a-Text-widget-tp29852273p29852273.html Sent from the Python - tkinter-discuss mailing list archive at Nabble.com. _

[Tkinter-discuss] Callback when insertion cursor moves

2010-09-30 Thread Baz79
Hi there, I have two text widgets. I have managed to program these so that they can be scrolled by the same scroll bars. However, if I move the cursor position in one widget, how can I get it to also move in the other widget? Thanks for your help, Barry -- View this message in context: http:/

[Tkinter-discuss] Visual (8-bit!) tkinter Cheatsheets

2010-09-30 Thread Lion Kimbro
Hi all, For many reasons, but mainly just for fun, I made some tkinter documentation in pixel graphics. I'd like to share what I made, here it is..! [image: grid_layout.png][image: button.png] It's pretty exhausting work, making letters pixel by pixel, but I like the results (assuming y

Re: [Tkinter-discuss] Correct order for dialog display

2010-09-30 Thread Michael Lange
Hi, Thus spoketh Bob Greschke unto us on Thu, 30 Sep 2010 11:06:49 -0400: > The .withdraw() should be right after the statement that creates the > Toplevel window. Creating it, then making the call to this def show() > is giving the system time to make the window visible. If the Toplevel > ()

Re: [Tkinter-discuss] Correct order for dialog display

2010-09-30 Thread Bob Greschke
The .withdraw() should be right after the statement that creates the Toplevel window. Creating it, then making the call to this def show() is giving the system time to make the window visible. If the Toplevel() and the .withdraw() are together the window doesn't show up until the .deiconify().

Re: [Tkinter-discuss] Correct order for dialog display

2010-09-30 Thread Vasilis Vlachoudis
Thank you Michael for the suggestion, I don't understand why you are using the withdraw() before. Now on my linux, it pops up the window (with Tk dimensions) then it remove it and then it displays it correctly with my dimensions. Cheers Vasilis On 09/30/10 11:38, Michael Lange wrote: Hi,

Re: [Tkinter-discuss] Correct order for dialog display

2010-09-30 Thread Michael Lange
Hi, Thus spoketh Vasilis Vlachoudis unto us on Thu, 30 Sep 2010 09:30:27 +0200: > Dear all, > > In my application I have several custom made Toplevel windows when they > close they remember their position and size, so the next time to open > them using with the same geometry. > > Therefor

[Tkinter-discuss] Correct order for dialog display

2010-09-30 Thread Vasilis Vlachoudis
Dear all, In my application I have several custom made Toplevel windows when they close they remember their position and size, so the next time to open them using with the same geometry. Therefore in the show method I have the following sequence def show(self): self.deiconify()