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 backgr

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

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: > > >How would I print the directory path? try doing: self.filename = tkFileDial

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: How would I print the directory path? Perhaps you meant: self.file = tkFileDialo

Re: Tkinter file dialog

2009-05-29 Thread Chris Rebert
On Thu, May 28, 2009 at 7:48 PM, 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: > > > How would I print the directory path? p

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: How would I print the directory path? Thanks -- http://mail.python.org/mailman/listinfo/python-list