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

how i increase the font text size.......

New Here ,
Jul 05, 2013 Jul 05, 2013

fullPreloader.onLoadComplete = function(target)

    {

        new Tween(target, "_alpha", Strong.easeOut, 0, 100, .5, true);

        target.my_txt.text = myTitle;

        target.my_txt._y=10;

        target.my_txt.size=90;                       // its not working

        target.my_txt.textColor = 0xffffff;

       

        target.my_txt.selectable=false;

        nickey.text = myDesc;

       

    };

TOPICS
ActionScript
390
Translate
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

correct answers 1 Correct answer

LEGEND , Jul 05, 2013 Jul 05, 2013

Look into using the TextFormat class for contrling the appearance of the text in the textfield...

var my_fmt:TextFormat = new TextFormat();

my_fmt.size = 90;

my_fmt.color = 0xffffff;

target.my_txt.setTextFormat(my_fmt);

Translate
LEGEND ,
Jul 05, 2013 Jul 05, 2013
LATEST

Look into using the TextFormat class for contrling the appearance of the text in the textfield...

var my_fmt:TextFormat = new TextFormat();

my_fmt.size = 90;

my_fmt.color = 0xffffff;

target.my_txt.setTextFormat(my_fmt);

Translate
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