Tkinter Label background??
I yet again have some problem with Tkinter. As you can see in the image, the labels are having a grey background ...
How to set the font size of a Canvas' text item??
I have the following code: canvas.create_text(x, y, font="Purisa", text= k) How do I set the font size with a var...
How to clear Tkinter Canvas??
When I draw a shape using: canvas.create_rectangle(10, 10, 50, 50, color="green") Does Tkinter keep track of the ...
What does the 'tearoff' attribute do in a tkinter Menu??
I often see Tkinter applications initialize Menu widgets using tearoff=0 in the constructor. import tkinter as tk ...
Showing and Hiding widgets?
How do you show and hide widgets in Tkinter? I want to have an entry box, but not have it shown at all times. Can s...
Display fullscreen mode on Tkinter?
How can I make a frame in Tkinter display in fullscreen mode? I saw this code, and it's very useful…: >>>...
Function to close the window in Tkinter?
import tkinter class App(): def __init__(self): self.root = Tkinter.Tk() button = Tkinter.Button(...
Tkinter's button can't change border color?
Here's my Tkinter code: Photoshop = Tkinter.Button(root, text = 'Photoshop', fg = '#37d3ff', bg = '#00...
Print output in GUI interface Tkinter Python?
from Tkinter import * def printSomething(): print "Hey whatsup bro, i am doing something very interresting." r...
Python Tkinter remove/delete Image from Label?
I have a label with an image, and a button which should update the label / delete the image in the label, so I can p...
Does Tkinter have a refresh method??
I am using Tkinter. import Tkinter as tk class App(tk.Frame): def __init__(self, *args, **kwargs): tk.Frame....
Token error: EOF in multi-line statement?
The following code gives me this error "Token Error: EOF in multi-line statement". What is this error? How can I fix...
How to set a tkinter window to a constant size?
I'm programming a little game with tkinter and briefly, I'm stuck. I have a kind od starting menu, in which are two...
_tkinter.TclError: invalid command name “.4302957584”?
When closing the python 3 program, I get a strange exception in the console. The Python 3 code: from tkinter impor...
Save user input from tkinter to a variable and check its content?
I have written a script simulating a card game in Python where the user decides how many cards and how many piles of...