Skip to main content
0 votes
1 answer
58 views

I'm trying to draw a grid in the turtle, but doing so requires knowing the positions of the corners of the screen. turtle.goto(0, 0) does not move the turtle to the middle of the screen; instead, it ...
James Logie's user avatar
2 votes
0 answers
90 views

I am trying to implement a flow layout in a ScrollableFrame from customtkinter. Specifically, instead of managing letters, the layout needs to manage small Frames in which names are written. I have to ...
user31885331's user avatar
-3 votes
0 answers
85 views

I am making an alarm using Python and MySQL integration for school project. I am using CustomTkinter to make UI App UI This is what I have reached so far. I want to add a red circular icon with white ...
Yug Ahuja's user avatar
0 votes
1 answer
100 views

A few years back I hacked together a tk script to listen for events from frigate and show the camera feed for a few seconds when someone was at the door. It worked without much effort until I updated ...
btxshark's user avatar
2 votes
2 answers
131 views

The following [mre]: import tkinter as tk root = tk.Tk() cnvs = tk.Canvas(root) cnvs.pack() labl = tk.Label(cnvs, text='hello world') laid = cnvs.create_window(0,0,window=labl,anchor='nw', tags=str(...
Thingamabobs's user avatar
  • 8,214
0 votes
1 answer
118 views

I have an application that divides the main window in two: Left: a canvas, where a map will be displayed Right: a frame, where several other frames will share space and one of them will be shown ...
Mike Duke's user avatar
  • 235
Tooling
0 votes
5 replies
135 views

I am a newbie in Python. My assignment requires me to use a graphical interface, and I plan to use tkinter for this purpose. However, I find manually typing code too complicated. Could any expert ...
Yanbing's user avatar
0 votes
1 answer
124 views

I have a script called GUI running two tkinter windows and I've been able to kill my program from within the script by creating a function for it def gui_kill(): root.destroy() win.destroy() ...
Paxton's user avatar
  • 11
2 votes
1 answer
75 views

I'm using DateEntry from tkcalendar. The problem is that I can only change the month and year the first time. When I try to change the year or month a second time, the calendar immediately disappears. ...
alexcr600's user avatar
2 votes
1 answer
85 views

I'm trying to have an IntVar object move from one script to another via a function that calls the second script when the toplevel window created in the second script is destroyed main script: from ...
James Logie's user avatar
2 votes
1 answer
99 views

I’m making a GUI application in Python using Tkinter that reads text out loud from PDF, DOCX, TXT, and images using gTTS. The program works, but sometimes Tkinter window becomes unresponsive and shows ...
Akshadha Awasthi's user avatar
0 votes
1 answer
104 views

When I have 2 images loaded in tkinter even though they are in a different position, only one of them shows up so I assume that one of them is deleting/replacing each other. how do i fix it? import ...
Labryinth996's user avatar
0 votes
0 answers
71 views

Whenever I'm using mss I'm trying to take a screenshot of part of my program in which I would create an array of x and y values of nodes and find the minimum and maximums of those x, y values then ...
Alex's user avatar
  • 1
1 vote
2 answers
138 views

I'm trying to create a square tk.Entry widget in Tkinter, but the width parameter only accepts integers which represent a number of characters instead of pixels. Setting width=2 makes the box too ...
Stevoisiak's user avatar
  • 27.9k
-3 votes
1 answer
98 views

I'm attempting to learn tkinter, how can i edit this code so that the text box is directly next to the input statement ? I've tried putting the text box in the first column with an alignment to the ...
Stuff's user avatar
  • 1

15 30 50 per page
1
2 3 4 5
23