Re: [Tutor] how to enable overrideredirect

2008-01-30 Thread Kent Johnson
brindly sujith wrote: > while executing this program > > initially a window will openafter that the buttons 'select' > and 'exit' is not working... It works for me as written on Mac OSX with Python 2.5.1. What platform are you running on? How are you running the program? If you are running

[Tutor] how to enable overrideredirect

2008-01-30 Thread brindly sujith
from Tkinter import * import tkMessageBox import tkFileDialog,os def quit(): if tkMessageBox.askokcancel("Quit","DO u really want to quit"): root.destroy() def fiopen(): file1 = tkFileDialog.askopenfile(parent=root,mode='rb',title='Choose a file') os.system