Python Forum
tkinter button acts normal ONLY after clicking off the window
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
tkinter button acts normal ONLY after clicking off the window
#1
I have a mac 10.13.4, and am using python 3.4.4 .
Here is my code:

####################

from tkinter import *

root = Tk()
canvas = Canvas(root, height = 1000, width = 1000)
canvas.pack()

def button_function():
    print("hello")
button = Button(root, text="button", font = ("Helvetica", 25), command=button_function, height = 4, width = 25)
button.place(x = 63, y = 800)
####################

The button command functions perfectly, but the button itself does not show that it is being clicked on when I run the program. However, I accidentally discovered that if I click off the screen an back on, then the button shows when it is being clicked. I'd like to fix my program so that it acts this way all of the time. Any help would be greatly appreciated.
Reply


Messages In This Thread
tkinter button acts normal ONLY after clicking off the window - by justin_m - Apr-23-2018, 10:29 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Interaction between Matplotlib window, Python prompt and TKinter window NorbertMoussy 3 541 Mar-17-2024, 09:37 AM
Last Post: deanhystad
  [Tkinter] TKinter Remove Button Frame Nu2Python 8 1,027 Jan-16-2024, 06:44 PM
Last Post: rob101
  tkinter - touchscreen, push the button like click the mouse John64 5 878 Jan-06-2024, 03:45 PM
Last Post: deanhystad
  Tkinter multiple windows in the same window tomro91 1 871 Oct-30-2023, 02:59 PM
Last Post: Larz60+
  Centering and adding a push button to a grid window, TKinter Edward_ 15 4,910 May-25-2023, 07:37 PM
Last Post: deanhystad
  [Tkinter] Open tkinter colorchooser at toplevel (so I can select/focus on either window) tabreturn 4 1,929 Jul-06-2022, 01:03 PM
Last Post: deanhystad
  [Tkinter] Background inactivity timer when tkinter window is not active DBox 4 2,946 Apr-16-2022, 04:04 PM
Last Post: DBox
  [Tkinter] Clicking on the button crashes the TK window ODOshmockenberg 1 2,258 Mar-10-2022, 05:18 PM
Last Post: deanhystad
  why my list changes to a string as I move to another window in tkinter? pymn 4 2,586 Feb-17-2022, 07:02 AM
Last Post: pymn
  Can't get tkinter button to change color based on changes in data dford 4 3,450 Feb-13-2022, 01:57 PM
Last Post: dford

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020