Right. I should have realized that.
I was looking for a replacement for:
Transcript closeAllViews
which has disappeared in Pharo 3.0. So this seems to work:
(Transcript dependents select: #isSystemWindow) do: #close
Thanks,
Oscar
On 20 Aug 2014, at 17:59 , Camille Teruel <[email protected]> wrote:
> Hi Oscar,
>
> It's because Transcript is only one instance of ThreadSafeTranscript.
> 'Transcript open' doesn't create a new instance but opens a new window on
> that instance.
>
> Camille
>
> On 20 août 2014, at 17:30, Oscar Nierstrasz (gmail)
> <[email protected]> wrote:
>
>>
>> In the latest Pharo 3 for Mac:
>>
>> Transcript open.
>> Transcript open.
>> Transcript class allInstances inspect
>>
>> only shows one instance, not two.
>>
>> Why?
>>
>> Oscar
>>
>
>