Hi,

I need a step by step tutorial on how to embed Korean characters into flash MX.

I'm having a hardest time I can easily embed English I have been doing it for years but I just can't seem to be able to embed Korean.

I'm loading an xml file into flash xml have been saved as UTF-8

<?xml version="1.0" encoding="utf-8"?>
<dataroot>
<row>
<koreanHead>홉데일장로교회</koreanHead>
</row>
</dataroot>

The flash file:

First load the xml

this.createTextField('label', 10, 0, 0, 300, 300);
var tf=this.label;//
tf.embedFonts=true;
var field=this.xm.get_value('korean')// this is the korean text from the xml>";
tf.text=field;
var f=new TextFormat();
f.font='korBody';// linkage of the font embeded in flash
tf.setTextFormat(f);

Displays a blank textfield even though the font is installed on the machine I used the "Arial Unicode MS"

If I do not set the embedfonts to true it will display the Korean characters but as soon as I set embedfonts to true it will display nothing neither in Flash neither in the browser.

Please help !!!!!!!!!