I've recently started creating graphical interfaces for my Python code using Tkinter. On my form I usu. have at least 1 text field, i.e. an instance of Tkinter.Entry. Its length is not always sufficient to display the whole text, hence my wish to show a tooltip with the complete text.
The user may update the text field and then the tooltip should then of course show the updated text. That's what I call a dynamic tooltip. I have seen the question What is the simplest way to make tooltips in Tkinter? with several answers - e.g. a nice one from crxguy52 - but none of those tooltips seem to be dynamic. Can anybody suggest what to do, in order to arrange for a dynamic tooltip?