I can do one using EntryFieldMorph in 5 minutes.

EntryFieldMorph>>authoringPrototype
        "
        self authoringPrototype 
        "
        | e |
        e := EntryFieldMorph new.
        e position: 8...@200.
        e width: 400.
        e initialContents: 'Fill in the blank'.
        e onAcceptSend: #delete to: e.
        e onEscapeSend: #delete to: e. 
        e openInWorld.
        ^ e


If you want i can code a similar one to FillInTheBlank , using announcements 
and a button.


On Oct 20, 2010, at 7:33 PM, Eliot Miranda wrote:

> FillInTheBlankMorph


_______________________________________________
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Reply via email to