Trying to detect change in ScrolledText #407
Cromwell1963
started this conversation in
General
Replies: 1 comment 1 reply
-
I believe the event you are looking for is This would be bound to the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to respond to changes in the text of a ScrolledText widget.
I have tried:
self.scrolledtext.bind("<<TextModified>>", lambda: print("OK"))
and:
self.scrolledtext.text.bind("<<TextModified>>", lambda: print("OK"))
but cant get either to work.
Id be grateful for suggestions.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions