Ian,
"Ian Bartholomew" <
[hidden email]> wrote in message
news:RJaP6.98742$
[hidden email]...
> Ted,
>
> How about something like (just using a ClassBrowserShell as an example)
>
> s := ClassBrowserShell show.
> s when: #viewClosed perform: [s selectedClass inspect]
>
> or, IMHO, the better
>
> s := ClassBrowserShell show.
> s when: #viewClosed send: #modelUpdated: to: self with: s
>
> You should find that the block or method is only evaluated when the
> ClassBrowser is closed.
>
> Is that what you wanted?
You're a star. Thanks alot.
>
> Ian
>
>
>
>
>
Ted