0
votes
1answer
10 views
Make Tkinter window not always on top
I have a simple program as follows:
from Tkinter import *
class Run:
def __init__(self,parent):
parent.overrideredirect(True)
root = Tk()
app = Run(root)
root.mainloop()
When I run ...
0
votes
1answer
12 views
(Python/Tkinter) Way for click button and press enter to call to the same function?
Ok so basically I have a gui that has entry box and a submit button.
I trimmed down all the other widgets so we can just focus on the problem.
In the code below I am basically trying to use get() and ...
0
votes
1answer
26 views
Python: How to get score board on canvas
I wanted to make a "Math bubble" game in python 3.3, its where ovals(bubbles) move around randomly on the canvas, These bubbles have a number on them e.g.2 and the user must pop/click the bubbles in ...
0
votes
1answer
19 views
Python tkinter screen width and height secondary display
i have a duel monitors set up ( laptop screen and external monitor). My laptop screen is my primary display and external monitor is secondary. Both has different screen sizes.
In my python tkinter ...
1
vote
1answer
30 views
Python: How to get the use of a mouse click to work?
I wanted to make a "Math bubble" game in python 3.3, its where ovals(bubbles) move around randomly on the canvas, These bubbles have a number on them e.g.2 and the user must pop/click the bubbles in ...
0
votes
1answer
7 views
Entry config error
I have a program that needs to change the state of the widget but the problem is I keep getting this error:
Traceback (most recent call last):
File ...
1
vote
0answers
20 views
Tkinter to android translation
I have a relatively simple tkinter program that just uses Event, Button and Label objects. I would like to translate this to be usable on an android platform.
1) What python for android should I use? ...
2
votes
1answer
30 views
Python Tkinter scrollbar issue
I am recieving a strange bahavior and exception of the Tkinter scrollbar.
My GUI basically uses a Tkinter Text Widget which is related/referenced to the scrollbar.
self.textFrame = ...
1
vote
2answers
25 views
Python post increment variable in function call
Premise: I am trying to make a bunch of buttons in Tkinter and put them in a grid layout one after the other. I don't want to hard code each grid value that way I can add more buttons later with ease.
...
0
votes
1answer
36 views
Import Image into tkinter
Ok so I'm currently writing a simple image viewer and I have enough code to be able to view those images, but the only problem is to view the images you want. You have to put them in the same ...
3
votes
2answers
58 views
Python GUI programming using drag and drop, also incorporating stdout redirect
Hi to everyone & thanks in advance for any help given!
I'm new to programming & new to python. I've just developed my first script, it prosesses file, but at the moment only from the ...
2
votes
1answer
19 views
Tkinter: a simple way to avoid race conditions between an event and value update?
The issue
My issue is pretty simple, but I couldn't figure out how to cope with it easily even after some googling.
So I have a checkbutton:
self.but_val = IntVar()
self.but = Checkbutton(frame, ...
0
votes
1answer
29 views
Socket program need an integer
I have a chat client and but when I run it I get an error like this:
Traceback (most recent call last):
File "C:\Users\Public\Documents\Programming\Chat Client\Chat Client.py", line 21, in
...
0
votes
1answer
16 views
Socket chat client error
I have made a chat server client but when I run it I get this error:
Traceback (most recent call last):
File "C:/Users/Public/Documents/Programming/Chat Client/Chat Client.py", line 21, in
...
0
votes
1answer
20 views
Python Tkinter horizontal auto scrolling label
Currently, i have this python tkinter label that scroll through the text horizontally.
deli = 100
svar = tk.StringVar()
labl = tk.Label(root, textvariable=svar, ...