| Revision: | 8 |
| Committed: | Sat May 5 04:21:19 2012 UTC (13 years, 10 months ago) by ninoborges |
| Content type: | text/x-python |
| File size: | 279 byte(s) |
| Log Message: | Initial Import |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | ninoborges | 8 | #Tkinter file functions test |
| 2 | |||
| 3 | from Tkinter import * | ||
| 4 | import tkSimpleDialog | ||
| 5 | import tkFileDialog | ||
| 6 | root = Tk() | ||
| 7 | |||
| 8 | test=tkSimpleDialog.askstring("input your stuff here", "right here", parent=root) | ||
| 9 | print test | ||
| 10 | file=tkFileDialog.askopenfilename(parent=root) | ||
| 11 | print file | ||
| 12 | mainloop() |