I’m new to using tkinter and GUI programming in general so this may be a pretty basic question. Anyway, suppose I have a set of buttons for the user to choose from and what I want is a list of all the button objects that were clicked by the user. Basically, I want to know which buttons the user clicked.
Share
On each of the buttons you could set the command to add themselves to a list of clicked buttons.
Not sure if the syntax is all correct, but that’s the basic idea.