Questions tagged [tkinter-macos]
5 questions
4
votes
2 answers
`tkinter._test()` buttons are invisible when using pipenv
I'm learning Tkinter right now and trying to work through my first issue, but finding Google hasn't been helpful.
I'm running this code on Mac OS X 10.15.1 (Catalina)
I'm using Python 3.7 and my code looks like so (lots of boilerplate per PEP8…

stevendesu
- 15,753
- 22
- 105
- 182
2
votes
3 answers
Why aren't these tkinter stylings working?
* To eliminate any confusion, I am using macOS Catalina, Python 3.7.4, and Tcl/Tk 8.6.9 *
I have a project that uses 'black' as a theme from ThemedTK in ttkthemes. I am trying to modify the styling for the buttons.
However, I have not been able to…

SouthernYankee65
- 1,129
- 10
- 22
1
vote
0 answers
Tkmacosx "WARNING: Appearance colours are not supported"
I'm recieving this message in the shell each time I run my Tkinter program:
WARNING: Appearance colours are not either supported with the current tkinter or the colors doesn't exist on this Mac.
However, the colours work and my button looks…

pesto_23
- 11
- 4
1
vote
1 answer
Tkinter checkbutton - text won't show up
When I try to use a checkbutton it works fine but the text won't appear. I can't understand why. Below is my code
from tkinter import *
a = Tk()
var1 = IntVar()
Checkbutton(a, text="checkbutton", variable=var1,…

eary
- 13
- 2
0
votes
0 answers
Tkinter Textbox Scrolling Problem on Mac OS
I'm having an issue with Tkinter textbox. When you scroll appears a white line.
I've wrote a simple code to let you reproduce the issue.
Note: I have this problem running the script with Python3.x, the problem doesn't show up when running it with…

Alesof
- 321
- 2
- 8