Challenge:
Most designers find themselves worrying about cross-browser compatibility. Most of the time, they have to work with a limited choice of fonts.
What if you want to do something flashy, like this: http://us.blizzard.com/en-us/company/
Notice the gradient and the drop shadow in the “Company” header. It’s done in flash. And since it’s Blizzard, I assume it runs under a CMS so it’s dynamic. You can change “Company” to “Kompanya” just as easily.
Solution:
1. Design whatever wonderful dynamic text you want in flash.
2. Make sure you embed the characters you want included in the font.
3. Assuming your instance name is “textMC”. Put this in the main timeline:
[as3]
var params:Object = LoaderInfo(this.root.loaderInfo).parameters;
var _text:String = String(params["content"]);
var _orientation:String = String(params["align"]);
var myTextFormat:TextFormat = new TextFormat();
if(_orientation == "center"){
myTextFormat.align = TextFormatAlign.CENTER; //align center
}else if(_orientation == "right"){
myTextFormat.align = TextFormatAlign.RIGHT; //align right
}else{
myTextFormat.align = TextFormatAlign.LEFT; //default alignment is left
}
textMC.text = _text;
textMC.setTextFormat(myTextFormat);
[/as3]
[as3]
content="This is the content"
[/as3]