- PluggableTextMorph does not provide a means for clients to know when the text has changed
aPluggableTextEditorMorph autoAccept: true
That is not the same. I want a notification from the PluggableTextMorph to tell me that the text changed, so that I can update the an external client.
You'll get an accept notification for each key press. There is also an option to automatically send a accept notification when the text field looses focus.
Alternatively you can directly hook into the morphic #eventHandler and get notified about #keystroke, #keyDown, #keyUp, ...
Lukas