Aug. 15, 2009
10:05 p.m.
Greetings, I am a Pharo newbie. What a nice image! One of the things I'd like to do is monitor the Magma test-suite while it runs; Magma intercepts Notifications from its test suite code to simply Transcript show: them by default. But the Transcript doesn't render them while the UI process is busy, as the following demonstrates: "Screen doesn't update until entire script is complete.." World findATranscript: nil. 1 to: 100 do: [ : n | Transcript cr; show: n; endEntry ] I also tried a World doOneCycleNow but it blows up.. Doesn't seem right anyway.. Thanks, Chris