Skip to content
Advertisement

How to make a Tkinter Button change its own text attribute?

Context: this is part of a program I am making that builds a form with Tkinter that respects a specific json schema.

It works recursively and build_dict_form in called every time an “object” type (that actually corresponds to the dict type in python) is encountered in the schema. build_rec_form will call another function to complete that part of the form.

JavaScript

My problem right now is to make it so that when I click on btn_k its text attribute changes to “Cancel” (the TODO is not part of this question).

  • I can’t simply uncomment the btn_k.text = "Cancel" line since inside btn_k_cmd_factory I don’t have access to the btn_k object.
  • I can’t pass btn_k as a parameter for the factory since it is not yet created when the factory is called.
  • For some reason I don’t understand I can’t either create the button without its command attribute and change it afterwards.
  • I have to go through a factory, otherwise the different commands of the different buttons get scrambled, so tricks like this don’t work.

How can I make that work?

EDIT: if you need to make that run, you can use:

JavaScript

Advertisement

Answer

First, neither “text” nor “command” are an attribute of Button objects: accessing them requires going through btn['text'] and btn['command']

With that in mind it becomes possible to change the command of a button after it has been created:

JavaScript

and thus to have the button object as a parameter used in its own command function.


Based on @CoolCloud’s answer

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement