Skip to main content
Advice
0 votes
2 replies
48 views

Simillar to This question, but slightly different. I want to distinguish between two (or more) file types that share the suffix but internally are different. So far I have something like this: ## ...
Crowley's user avatar
  • 2,341
2 votes
1 answer
64 views

I'm currently trying to create buttons in Tkinter dynamically, each button should have a copy_url() function assigned to it, and when clicked, the button should copy the url of the image that's ...
Mayday's user avatar
  • 31
-4 votes
0 answers
100 views

I'm working on a personal project that I'm going to use to spoof Discord emotes, and for the frontend I'm using Tkinter. I have the following lines of code that I'm using to cache emotes into a folder,...
Mayday's user avatar
  • 31
-2 votes
0 answers
67 views

I load a website scrape TXT data into a scrollable Tkinter listbox Press a button to perform Data Analysis: which highlights ONLY specific numbers in that same listbox! Max data size: 201 such rows ...
WebCLT's user avatar
  • 1
4 votes
1 answer
65 views

I want to create a window program that connects a Minecraft world to a local websocket. It works fine in the Thonny IDE and I can run everything smoothly, but when I try to start it via Bash, it ...
frost's user avatar
  • 41
1 vote
1 answer
79 views

I am a beginner with Tkinter, and I can't figure out how to change frames in my RPG game. In the code I sent, I am trying to close the welcome_frame and open it. By the way, I couldn't find how to ...
Johan0o0's user avatar
1 vote
1 answer
55 views

I am trying to build a simple app in python with tkinter. It contains two rows for file selection (column of labels on frame1, labelFrame, and column of entry and button pairs on a second frame, ...
pythonManiac's user avatar
0 votes
0 answers
41 views

I was trying to make an app that shows the values of a table once one of the elements in treeview are selected using the following code: import tkinter as tk from tkinter import ttk root = tk.Tk() ...
Aperture Science's user avatar
0 votes
1 answer
100 views

I have a simple Tkinter app: import tkinter as tk from tkinter import ttk def main() -> None: root = tk.Tk() root.title('Hello world') label = ttk.Label(root, text='Hola Mundo') ...
Psionman's user avatar
  • 3,861
Advice
1 vote
2 replies
34 views

Can any one help me figure out how to make a menu widget appear where a button is located. I am working on an application that downloads videos from the internet using yt-dlp (I'm not encouraging ...
cogos18's user avatar
3 votes
1 answer
117 views

I have a table built from multiple Label widgets and laid out with the grid() method. I can group several columns in the header using rowspan and columnspan to organize the information in a certain ...
Mike Duke's user avatar
  • 267
0 votes
1 answer
142 views

I am trying to build a python program that shows camera feed. I tried it in 2 ways (TKinter and QtDesigner), both ways show cropped viewport compared to the native camera application viewport on ...
Marwa Shams's user avatar
0 votes
1 answer
122 views

I've recently switched from Windows 10 to Linux Mint, but after pulling some of my old git projects I'm having issues getting the modules to work correctly. My initial import list looks like this: ...
WRL41225's user avatar
  • 490
1 vote
2 answers
185 views

I have the following problem. I created a desktop application to generate invoices for my dad's company. The machine I wrote this application for is an iMac from 2011 running macOS High Sierra (10.13....
M. R.'s user avatar
  • 41
0 votes
1 answer
147 views

Why does the "tk-toolkit" treat the window item differently when the parent is not canvas? When distributing events for example: import tkinter as tk def enter_event(event): print(f'...
Thingamabobs's user avatar
  • 8,272

15 30 50 per page
1
2 3 4 5
3513