tkFileDialog question

2005-05-12 Thread jaime . suarez
I am creating a very simple GUI with one Entry widget and
one Button.  The purpose of the Button widget is to Browse for
a file using tkFileDialog.askopenfilename().

I bind the button to a handler which spawns a tkFileDialog. This
works but the button __stays depressed__ after the handler returns!
Any ideas why?

class MyApp:
def __init__(self, parent):
self.myParent = parent
self.myContainer1 = Frame(parent)
self.myContainer1.pack()

self.entry = Entry(self.myContainer1)
self.entry.grid(row=0,column=0 columnspan=2)

self.button1 = Button(self.myContainer1)
self.button1.configure(text="...")
self.button1.grid(row=0, column=2)
self.button1.bind("", self.button1Click)
self.button1.bind("", self.button1Click)


def button1Click(self, event):
filePick = tkFileDialog.askopenfilename()

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: tkFileDialog question

2005-05-13 Thread jaime . suarez
James, thank you very much for your answer.
Jaime

-- 
http://mail.python.org/mailman/listinfo/python-list