Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using in Unicode in my application using

 for(var i:int=0;i<16;i++)
 {
    for(var j:int=0;j<16;j++)
    {
     button = new Button();
     button.x =   j*35+10;
     button.y  =  i*20+10;
     button.height = 21;
     button.width  = 35;
     button.setStyle("borderColor","red");
     button.setStyle(" fontWeight","bold");
     button.label= String.fromCharCode(0x2190+16*i+j);
     button.addEventListener(MouseEvent.CLICK,greekalpha_clickHandler);
     vgr.addElement(button);
                }
            }

but when I run this code some symbols recognize properly and others are not

hi lighted recognize properly and other is not?what are mistakes that i've made in this code or how flex operate Unicode?

share|improve this question
2  
What happens to the other symbols? This could be just a font issue, since those those that you indicate as working are probably supported by far more fonts than the rest. – Jukka K. Korpela Feb 21 at 8:58
exactly, have you tried with proper unicode font? not embedded. – Lukasz 'Severiaan' Grela Feb 21 at 9:00
@JukkaK.Korpela other symbols not properly visiable. – dev Feb 21 at 9:34
1  
It is font issue, I've tested your code and: ⊂,⊃,⊄ this is a copy of trace output, in the ouput panel it displays as squares, but when I've pasted to the skype (which I have set to use Arial Unicode MS) then hte chars revealed, also as you can see in the comment they display correctly. – Lukasz 'Severiaan' Grela Feb 21 at 11:29
3  
Embed the Fonts, Use Lucida Sans Unicode and also set the advancedAntiAliasing = true; – yawar May 1 at 1:31
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.