Let me preface by saying that I don't do much Python, however, I am in my spare time, attempting to become somewhat comfortable with Python/ Tkinter.
I just can't seem to understand what is the problem with this: ------ import Tkinter, tkFileDialog root = Tkinter.Tk() files = tkFileDialog.askopenfilenames(parent = root, filetypes = [('JPEG', '*.jpg'), ('ICON', '*.ico'), ('GIF', '*.gif')], title = "Select files...", multiple = 1 ) print files ----- Any help greatly appreciated! Steve -- http://mail.python.org/mailman/listinfo/python-list