0
votes
1answer
13 views

Trying to get the selected Checkbutton's value of Tkinter, but don't work as expected

Here is my GUI and code shown as below, expected result is: one -- print 0 two -- print 1 three -- print 2 However, the program prints "2", no matter which check-box get selected. How can I fix ...
0
votes
1answer
20 views

Python Tkinter Multithreading functions

I am currently working on an Email sender and recieving program with the tkinter library from python. I am using the threading module to make the program refresh the unread emails every 60 seconds ...
0
votes
0answers
22 views

Python, tkinter running along side simulaiton

I have a simulation, where a create moves around a map. The map is drawn with tkinter. In the simulation's init I call root = Tk() root.geometry("800x800+300+300") self.ex = ...
1
vote
2answers
16 views

Why can't I pack this Tkinter Menu widget?

I'm building a GUI in Tkinter as part of my application and I've written a class "XMLMenu" which subclasses "Menu" but I'm receiving a TclError when I try to pack it. Here's what it looks like: class ...
1
vote
2answers
28 views

How to Organize Threaded GUI Application (Python)

I'm having trouble organizing my code into a useable and not super buggy program with a GUI using Tkinter (and ttk) and Python. Basically, it just downloads images off the net for now yet I'm having ...
3
votes
0answers
27 views

How do I get the Mac “command” symbol in a Tkinter menu

I've written a Python program for a friend's business, and am using Tkinter for the interface. Up until now, all features have been added in the main program window, but I'm now adding a print ...
0
votes
1answer
17 views

tkinter canvas image is not displayed in class

I am trying to display an image in python using the tkinter canvas option. However, if I input it in a class, like below, it doesn't give an error but also doesn't show my image. The buttons are ...
1
vote
1answer
22 views

Reading variables for a set of Checkbuttons in TKinter

I have a set of Checkbuttons on root.frame1 and I want to use the selected ones in a subframe of root to make an optionmenu. The approach I have taken is: import Tkinter as Tk root = Tk.Tk() frame1 = ...
1
vote
2answers
19 views

Scroll a group of widgets in Tkinter

I want to make a whole column of various widgets scrollable in a Tkinter GUI, like so: Tkinter can only attach scrollbars to certain widgets, of which, frames are not included. Making a scollable ...
0
votes
2answers
54 views

Python prints numbers instead of words

I'm trying to make a Tkinter program that displays what you enter but instead I get a bunch of numbers in the IDLE shell. My program: from Tkinter import * class App: def __init__(self, ...
0
votes
1answer
14 views

Tkinter listbox get attribute error

Been banging my head against a wall with this one. Just getting the ropes of Tkinter, followed a tutorial to get the basics, now working forward to implement my own stuff. I creating a query interface ...
0
votes
1answer
18 views

How to display unicode data in a file with named entities in different colours in a popup window with scrolled area in tkinter?

I would like to display a file having Unicode data (Malayalam) in a window with a scrolled area, with all the named entities in different colours in tkinter (PYTHON). For example, consider the ...
0
votes
1answer
29 views

How do I stop Flickering in my Transparent Splash Screen in Python? (Using Tkinter Canvas)

Using a bit of modified code I found on the web for creating a generic Tkinter splash screen, I tried to to create a transparent splash screen kind of thing with a .png. I know this code will only ...
0
votes
1answer
23 views

how to make python3.3 gui window fixed sizes?

as for the question mentioned, i cant find any code which can fixed the gui window and positions of all the labels, buttons etc.. import tkinter import tkinter.messagebox class Menu: def ...
0
votes
1answer
29 views

Animated Tkinter

I am trying to write a basic tkinter example that will show a box stretching across a frame. At this point the code below will only print the final result, and not show the box moving. How do I fix ...

1 2 3 4 5 170
15 30 50 per page