| Revision: | 591 |
| Committed: | Tue Nov 3 22:45:12 2015 UTC (10 years, 4 months ago) by nino.borges |
| Content type: | text/x-python |
| File size: | 279 byte(s) |
| Log Message: | Moved dir out of main dir. |
| # | 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() |