Hi guys,
Just a quickie, following on from the previous text format question, I to am a novice with this stuff…
I managed to use the above script and get my color changed…but ur suggestion for size doesnt seem to work…
Works fine - target.my_txt.text = myTitle;
Works fine - target.my_txt.textColor = “0xFFFFFF”;
No effect on text -myformat.size = 20;
No effect on text -target.my_txt.setNewTextFormat(myformat);
Any suggestions? Also tried the othe way you suggested. And while I’m here, do you use the same technique to change font style?
Thanks.
My Code: Sorry its messy and has comments:
fullPreloader.onLoadComplete = function(target) {
//new Tween(target, “_alpha”, Strong.easeOut, 0, 100, .5, true);
//var myTextTween = new Tween(target.my_txt, “_y”, Strong.easeOut, myText_y, -20, 0.5, true);
//target.my_txt.text = myTitle;
//- Start of Glow
if (!myFil) {
_global.myFil = true;
var myGlow = new flash.filters.DropShadowFilter();
myGlow.color = 0xffffff;
myGlow.alpha = 0.4;
var myTempFilters = fullImage_mc.filters;
myTempFilters.push(myGlow);
fullImage_mc.filters = myTempFilters;
}
//- End of Glow
var myFadeIn = new Tween(target, “_alpha”, Strong.easeOut, 0, 100, 0.5, true);
var myText_y = target.my_txt._y;
target.my_txt.text = myTitle;
target.my_txt.textColor = “0xFFFFFF”;
myformat.size = 20;
target.my_txt.setNewTextFormat(myformat);
//target.my_txt.embedFonts = false;
//target.my_txt.setTextFormat(_root.my_fmt);
var myTextTween = new Tween(target.my_txt, "_y", Strong.easeOut, myText_y, -20, 0.5, true);
};