Reputation: 1035
I want to use UTF-8 characters in my action script code. how can I do?
my code:
var menu_label:Array = new Array("Ş", "Ç", "Ğ" , "Ü");
Upvotes: 0
Views: 1223
Reputation: 773
You need to embed the font and specify the unicode range. There's a good description on how to do that here.
Upvotes: 2