[Newbies] Colored text in a Transcript?

Alain Plantec alain.plantec at univ-brest.fr
Wed Jul 26 19:39:22 UTC 2006


Le Wednesday 26 July 2006 21:22, Alain Plantec a écrit :
> Le Wednesday 26 July 2006 19:41, Mike O'Brien a écrit :
> > 	Is there any way to write colored text to a Transcript?
> > I tried something like this:
> > 
> > Transcript show: ('red text' asText addAttribute:
> > 	(TextColor color: Color red))
> > 
> > but it didn't work.
sorry but  i think it can't work with Transcript which is a WriteStream :
WriteStream>>withAttribute: att do: strmBlock 
        "No-op here is overriden in TextStream for font emphasis"
        ^ strmBlock value
attributes are ignored here

and in TranscriptStream>>show: argument is converted to String :
TranscriptStream>>show: anObject  "TextCollector compatibility"
        self nextPutAll: anObject asString; endEntry

alain
> it's here : http://minnow.cc.gatech.edu/squeak/364
> alain
> > 
> > Mike O'Brien
> > _______________________________________________
> > Beginners mailing list
> > Beginners at lists.squeakfoundation.org
> > http://lists.squeakfoundation.org/mailman/listinfo/beginners
> > 
> > 
> 
> 


More information about the Beginners mailing list