Copy link to clipboard
Copied
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;
};
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);
Copy link to clipboard
Copied
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);
Find more inspiration, events, and resources on the new Adobe Community
Explore Now