> On Apr 10, 2016, at 6:44 PM, Bruce Peaslee <bruceapeas...@comcast.net>
> wrote:
>
> This is my first week with Pharo. I have been moderately successful in
> learning how things go, but I cannot seem to create a HELP|ABOUT dialog.
> Pointing me in the right direction would be appreciated.

Also my first week with Pharo, and first week with Smalltalk in over 20 years.


On 11 April 2016 at 02:07, Robert J Rothwell <r.j.rothw...@gmail.com> wrote:
> Also, this default behavior can be reproduced with:
>
> (LongMessageDialogWindow new entryText: 'Hello') open
>
> (well, that doesn't set the title to "About"...)

LongMessageDialogWindow new
    entryText: 'Hello World';
    title: 'About';
    open

I figured this one out by changing the browser to class hierarchy and
walking up through the classes until I found a likely method (title:).

Cheers,
Alistair

Reply via email to