Hi,

RubPluggableTextMorph replaced the old PluggableTextMorph.

acceptOnCR: and changedAction: are not valid any more. For the former
never mind.

For the latter how should it be rewritten?

I read these

self textArea announcer when: RubTextChanged send:
#whenTextChangedInTextArea: to: self.

and

whenTextChangedInTextArea: anAnnouncement
    self announcer announce: anAnnouncement

It looks like we have both the old and new word of changes propagation.
I am wondering how to propagate it in DrGeo (pre-Announcement era)

Thanks


newDescriptionMorph
    ^(self
        newTextEditorFor: self
        getText: #description
        setText: #description:
        getEnabled: nil)
        acceptOnCR: false;
        setBalloonText: 'A description of the script. To help the user,
describe carefully what the script does and the input arguments to
select to use it.' translated;
        changedAction: [:text | self changed: #isValid ];
        selectAll

-- 
Dr. Geo
http://drgeo.eu



Reply via email to