Elmi Ahmadov
Elmi Ahmadov

Reputation: 1035

using UTF-8 characters in action script

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

Answers (1)

David
David

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

Related Questions