How do you make some parts of spark.components.RichText bold?
In my Flash / ActionScript 3 programm I have been just using htmlText property of a TextField, and set it to 1 2 <b>3</b> - but now I'm trying to port my program to Flex 4.5.
UPDATE:
I'm trying:
myRichtText.textFlow = TextConverter.importToFlow('1 2 3 <s:span fontWeight="bold">4 5</s:span>', TextConverter.TEXT_LAYOUT_FORMAT);
but nothing is displayed. I'd prefer not to use RichEditableText or TextArea.