Hi!
Consider the following script: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= v := RTView new. label := RTLabel elementOn: 'TypeSomething'. v add: label. v when: TRKeyDown do: [ :evt | label trachelShape text: label trachelShape text, evt keyValue asCharacter asString. v signalUpdate. ].
v -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
If I open the view, then typing write text in the roassal view. In GTInpector, this does not work, because the left pane keeps the key focus. I have the impression the left pane should release the keyboard focus when the mouse on the right pane. No?
Alexandre