0

I want to use UTF-8 characters in my action script code. how can I do?

my code:

var menu_label:Array = new Array("Ş", "Ç", "Ğ" , "Ü");
Elmi Ahmadov
  • 1,017
  • 5
  • 14
  • 25

1 Answers1

2

You need to embed the font and specify the unicode range. There's a good description on how to do that here.

David
  • 703
  • 1
  • 15
  • 31