How to display Chinese characters in context menu? I can able to display all language character(using unicode) except Chinese language.
var cMenu:ContextMenu = new ContextMenu();
cMenu.hideBuiltInItems();
var cmItem:ContextMenuItem = new ContextMenuItem('\u5E15\u5E03', chLanaguage,true);
cMenu.customItems.push(cmItem);
this.menu = cMenu;
Above Unicode string display as box box in the right click context menu.
Same character I can able to display in Label, Text field, Combo box, List..etc.
Except right click context menu.
Any idea or suggestions?
Kindly let me know.
Thanks & Regards,
M.Prabhu