ActionScript 3 将CSS添加到Flash文本字段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 将CSS添加到Flash文本字段相关的知识,希望对你有一定的参考价值。

var cssLoader:URLLoader = new URLLoader();

var cssRequest:URLRequest = new URLRequest("content.css");

var sheet:StyleSheet = new StyleSheet();

cssLoader.load(cssRequest);

cssLoader.addEventListener(Event.COMPLETE, cssLoadComplete);

 

function cssLoadComplete(event:Event):void

{

    //trace(cssLoader.data);

       sheet.parseCSS(cssLoader.data);

   // Now assign the StyleSheet to a text field for example

    textBox.styleSheet = sheet;

  //textBox.text = styles.texttitle;

 
  // Now you would load any external text or html into

  // the text field

}

以上是关于ActionScript 3 将CSS添加到Flash文本字段的主要内容,如果未能解决你的问题,请参考以下文章

为 SWF 扩展面板添加关闭和更改 FLA 文档的事件侦听器。使用 ActionScript、JSFL

ActionScript 3 保存FLA和调用侦听器的JSFL

将带有 AS2 动作和 ActionScript 的 FLA 资源编译为 SWF

无法将其他flas动画片段访问到动作脚本3

如何使用 Actionscript 3、Flex 4 SDK 和 FlashDevelop 从 .fla 文件访问数据?

ActionScript 3.0 类