Hi I made a music downloading program that works great it tells you the percent its done and then if i move the window at all it stops downloading .
I have a python tkinter application which I want to run full screen. When I uncomment overrideredirect, the window manager (Gnome, Linux) will not be able to forward keystrokes to the application anym
from TKinter import * class Ui(Frame): def __init__(self) Frame.__init__(self, None) self.grid() bquit=Button(self, text=\"Quit\", command=self.quit_pressed)
I\'m trying to create a GPA calculator in python using tkinter. I\'m using python 3.1. Heres what I have so far for my GUI.
To be able to use idle with my virtualenv python, I created an idle script #!/myvirtualenv/python from idlelib.PyShell import main
I\'m trying to w开发者_运维百科rite simple notepad with Tkinter. And I need some font chooser. So my question is: is there included one? and if there isn\'t, where can I get one?
I\'m working with the Text widget and I have an issue about old-school shortcuts that Tk uses. Ie: Select all: Ctrl + / vs Ctrl + a
I have installed Python 3.2 from: http://wiki.python.org/moin/TkInter. Step 3 - does Tkinter work? Try the following command at the Python prompt:
world! In turtle graphics in python, there\'s possible to create various Turtle objects and manipulate them with their methods, forward, backward... I wanted to experiment with threads so I wrote a th
I have the code: from Tkinter import * admin = Tk() a = 1 def up(): global a a += 1 def upp(): up() print a print \'its \',a