• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

How can we show the unicode text in flash

Community Beginner ,
Feb 09, 2012 Feb 09, 2012

Copy link to clipboard

Copied

How can we show the unicode text in flash (FLA) files. As I need to show the Hindi text using unicode format.

Note: I am able to show it on Flex using properties files.

TOPICS
ActionScript

Views

1.0K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 23, 2014 Apr 23, 2014

Copy link to clipboard

Copied

var letter:Number = Number(new Number(0x2714).toString(10));

                    trace(String.fromCharCode(letter))

Source : Adobe Website

If you cannot still cannot display it, just change the font family,
simple way is by copying the character into the text field, then change the font family until the character show up correctly, then just input that code i give to u to the script
PS : Just done it

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 23, 2014 Apr 23, 2014

Copy link to clipboard

Copied

Also -> if the unicode is U+2714 then just change to 0x2714

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 24, 2014 Apr 24, 2014

Copy link to clipboard

Copied

LATEST

you only need,

trace(String.fromCharCode(0x2714))

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines