Re: Tkinter file dialog screwed

2016-09-14 Thread Kerbingamer376
On Wednesday, September 14, 2016 at 2:14:16 AM UTC+1, Steve D'Aprano wrote: > On Wed, 14 Sep 2016 06:08 am, kerbingamer376 wrote: > > > The tkinter file dialog is, for me, unusable. Whenever I try to use it, it > > opens, but all the text is white on a white background

Re: Tkinter file dialog screwed

2016-09-13 Thread Steve D'Aprano
On Wed, 14 Sep 2016 06:08 am, kerbingamer376 wrote: > The tkinter file dialog is, for me, unusable. Whenever I try to use it, it > opens, but all the text is white on a white background (see this > http://xomf.com/qzhgy) making it unusable. This has happened on 2 linux > systems, bot

Re: Tkinter file dialog screwed

2016-09-13 Thread martinjp376
yes, I can make the labels turn black by selecting them with the arrow keys. -- https://mail.python.org/mailman/listinfo/python-list

Re: Tkinter file dialog screwed

2016-09-13 Thread Christian Gollwitzer
Am 13.09.16 um 22:08 schrieb kerbingamer376: The tkinter file dialog is, for me, unusable. Whenever I try to use it, it opens, but all the text is white on a white background (see this http://xomf.com/qzhgy) making it unusable. This has happened on 2 linux systems, both KDE plasma 5. Any help

Tkinter file dialog screwed

2016-09-13 Thread kerbingamer376
The tkinter file dialog is, for me, unusable. Whenever I try to use it, it opens, but all the text is white on a white background (see this http://xomf.com/qzhgy) making it unusable. This has happened on 2 linux systems, both KDE plasma 5. Any help? -- https://mail.python.org/mailman/listinfo

[issue12988] Tkinter File Dialog crashes on Win7 when saving to Documents Library

2013-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: As near as I can tell, the tcl/tk distributed with Windows is not upgraded in bugfix releases. I presume it is a matter of testing and stability and not introducing any new features in the new tcl/tk. In any case, on Windows, this is fixed in 3.3 (and

[issue12988] Tkinter File Dialog crashes on Win7 when saving to Documents Library

2012-07-08 Thread Ali Rahmjoo
Ali Rahmjoo ali_rahm...@yahoo.com added the comment: I have exactly the same problem mentioned by Brian Gernhardt for 32-bit Python 3.2.3 on Win7. -- nosy: +alirahmjoo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12988

[issue12988] Tkinter File Dialog crashes on Win7 when saving to Documents Library

2012-06-06 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: I closed #14996 as a duplicate of this. The OP there claimed that behavior changed between 3.2.1 and 3.2.3 and that she had same problem with 32 bit installation. It is hard to know the exact circumstances of the problem until we find its

[issue12988] Tkinter File Dialog crashes on Win7 when saving to Documents Library

2012-06-06 Thread Roger Serwy
Roger Serwy roger.se...@gmail.com added the comment: I installed 3.3.0a4 (64-bit) on Win 7 and the issue did not occur when using asksaveasfile. I repeated with 32-bit 3.3.0a4 without any problems. How can we confirm that 3.2 will receive the Tcl/Tk upgrade? (64-bit 2.7.3 does not have this

[issue12988] Tkinter File Dialog crashes on Win7 when saving to Documents Library

2012-06-06 Thread Roger Serwy
Roger Serwy roger.se...@gmail.com added the comment: Re-opened. -- resolution: out of date - status: closed - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12988 ___

[issue12988] Tkinter File Dialog crashes on Win7 when saving to Documents Library

2012-05-19 Thread Roger Serwy
- high title: IDLE on Win7 crashes when saving to Documents Library - Tkinter File Dialog crashes on Win7 when saving to Documents Library versions: +Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12988

[issue12988] Tkinter File Dialog crashes on Win7 when saving to Documents Library

2012-05-19 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: I re-verified this on win7-64 with 3.3.0a3 From Idle, Idle remains after clicking away the error box. From Command Prompt, CP disappears after clicking away box. Problem is not specific to Donwloads. Other Libraries fail also. Desktop and other

Re: Tkinter file dialog

2009-05-29 Thread Chris Rebert
On Thu, May 28, 2009 at 7:48 PM, Ronn Ross ronn.r...@gmail.com wrote: I'm using Tkinter file selector to get a direcotry path. I'm using: self.file = tkFileDialog.askdirectory(title=Please select your directory)     print file but all it prints out is: type 'file' How would I print

Re: Tkinter file dialog

2009-05-29 Thread Hendrik van Rooyen
Ronn Ross wrote: I'm using Tkinter file selector to get a direcotry path. I'm using: self.file = tkFileDialog.askdirectory(title=Please select your directory) print file but all it prints out is: type 'file' How would I print the directory path? try doing: self.filename =

Re: Tkinter file dialog

2009-05-29 Thread MRAB
Ronn Ross wrote: I'm using Tkinter file selector to get a direcotry path. I'm using: self.file = tkFileDialog.askdirectory(title=Please select your directory) print file but all it prints out is: type 'file' How would I print the directory path? Perhaps you meant: self.file =

Tkinter file dialog

2009-05-28 Thread Ronn Ross
I'm using Tkinter file selector to get a direcotry path. I'm using: self.file = tkFileDialog.askdirectory(title=Please select your directory) print file but all it prints out is: type 'file' How would I print the directory path? Thanks --