Hello,

I am using a custom note tool in which i have a RichEditableText control.
User can make selected text bold or italic by clicking on the respective
bold and italic buttons..for example to make selected text bold i am doing
something like this 
                        var tlf:TextLayoutFormat = getTextLayoutFormat();
                        tlf.fontWeight = setBold ? FontWeight.BOLD : 
FontWeight.NORMAL;
                        if (selectionAnchorPosition == 0 &&
selectionActivePosition == 0)
                        {
                        editManager.applyLeafFormat(tlf, new
SelectionState(editableTextDisplay.textFlow, 0,
editableTextDisplay.text.length, tlf));
                        }
                        else
                        {
                                editManager.applyLeafFormat(tlf);
                        }

this works well for English, but i face problem with korean characters...i
can't make them bold or italic...
plz let me know which font file i have to embed to resolve this issue




--
View this message in context: 
http://apache-flex-development.2333347.n4.nabble.com/unable-to-make-korean-text-bold-or-italic-tp36851.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.

Reply via email to