Python Forum
Tkinter error for a scheduled event
Thread Rating:
  • 4 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Tkinter error for a scheduled event
#1
Scheduled a variable to be updated with the current time for display in a label.

...

def update_clock():
    tab1_labeltxt = StringVar(time.strftime('%H %M %S'))
    brass_io.after(1000, update_clock)

brass_io.after(1000, update_clock)
brass_io.mainloop()
Program works just fine without the above code, which produces this error:

Exception in Tkinter callback
Error:
Traceback (most recent call last): File "/usr/lib/python3.6/tkinter/__init__.py", line 1705, in __call__ return self.func(*args) File "/usr/lib/python3.6/tkinter/__init__.py", line 749, in callit func(*args) File ".../BIBO_Project.py", line 100, in update_clock tab1_labeltxt = StringVar(time.strftime('%H %M %S')) File "/usr/lib/python3.6/tkinter/__init__.py", line 480, in __init__ Variable.__init__(self, master, value, name) File "/usr/lib/python3.6/tkinter/__init__.py", line 317, in __init__ self._root = master._root() AttributeError: 'str' object has no attribute '_root'
Not sure what to do. Above my pay-grade.

Did some testing though, and I can't find this exact problem elsewhere, but I did see something about it being a possible problem with class inheritance? I really don't know, very new to this.

Thanks in advance <3

[edit] currently reading this: http://effbot.org/tkinterbook/variable.htm which seems to be getting somewhere.
[edit 2] nope lol. still looking.
Reply


Messages In This Thread
Tkinter error for a scheduled event - by Ceegen - Jan-12-2019, 04:43 AM
RE: Tkinter error for a scheduled event - by woooee - Jan-13-2019, 06:53 AM
RE: Tkinter error for a scheduled event - by Ceegen - Jan-14-2019, 05:20 AM
RE: Tkinter error for a scheduled event - by woooee - Jan-14-2019, 06:42 AM
RE: Tkinter error for a scheduled event - by wuf - Jan-14-2019, 07:59 AM
RE: Tkinter error for a scheduled event - by Ceegen - Jan-14-2019, 09:24 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] Mouse click event not working on multiple tkinter window evrydaywannabe 2 3,771 Dec-16-2019, 04:47 AM
Last Post: woooee
  What is the purpose of "None" in event=None with tkinter ? alan9979 2 6,496 Jul-10-2019, 08:50 PM
Last Post: alan9979

Forum Jump:

User Panel Messages

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