ActionScript 3 使用非标准字体在flash中设置文本样式的CSS
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 使用非标准字体在flash中设置文本样式的CSS相关的知识,希望对你有一定的参考价值。
//css:
p{
font-family:Caecilia LT Std 55 Roman;
font-size:35;
leading:10;
color:#252525;
}
.veryBig{
font-family:Caecilia LT Std 86 Heavy Italic;
font-size:77;
}
.bigOrange{
font-family:Caecilia LT Std 45 Light;
font-size:53;
color:#d55c19;
}
.bigBold{
font-family:Caecilia LT Std 85 Heavy;
font-size:53;
}
.normalThin{
font-family:Caecilia LT Std 46 Light Italic;
}
.bigThin{
font-family:Caecilia LT Std 45 Light;
font-size:58;
}
//ac3:
var url:URLRequest = new URLRequest("style.css");
var loader:URLLoader = new URLLoader();
loader.addEventListener(Event.COMPLETE, cssComplete);
loader.load(url);
function cssComplete(evt:Event){
var css:StyleSheet = new StyleSheet();
css.parseCSS(loader.data);
wellcText.styleSheet = css;
wellcText.htmlText = "<p><span class='veryBig'>Hello</span>, some text <span class='bigOrange'>some text</span>.<br>some text <span class='normalThin'>some text</span> my <span class='bigBold'>some text</span><br>some text <span class='bigBold'>some text</span><br>some text <span class='normalThin'>some text</span> some text <span class='bigThin'>some text</span>.</p>";
wellcText.embedFonts=true;
wellcText.selectable=false;
}
以上是关于ActionScript 3 使用非标准字体在flash中设置文本样式的CSS的主要内容,如果未能解决你的问题,请参考以下文章
ActionScript 3 在ActionScript 3中嵌入字体
ActionScript 3 使用字体资产进行编译
ActionScript 3 AS3使用flex SDK嵌入字体
ActionScript 3 在FlashBuilder项目中嵌入字体
在ActionScript 3中嵌入字体
ActionScript 3 在Flex 3上的AS3中嵌入字体