> -----Original Message-----
> From: Mike Bielser [mailto:
[hidden email]]
> I have a simple question: Is it possible to have different
> fonts (with different attributes) in one
> and the same text view/editor?
Definitely! You want your Text to have emphases that change the font
family. See CharacterAttributes class>>basicAttributesFor: and
htmlAttributesFor: for some existing ones. E.g. ('Arial' asText
emphasizeAllWith: #family->'Arial'), ('Times' asText emphasizeAllWith:
#family->'Times New Roman')
The one thing you can't do easily is change the line height within a
text view. You'd need to implement your own editor that allowed a
collection of ComposedTexts for that.
HTH,
Steve