首页 相关文章 HTML与CSS在Flash中的应用

HTML与CSS在Flash中的应用

  HTML与CSS在Flash中的应用:

  不小心看到同事Den在弄个小东西:在Flash里使用HTML和CSS,代码是这样:

Example Source Code
var myStyle:TextField.StyleSheet = new TextField.StyleSheet();
myStyle.load("sample.css");
content_txt.styleSheet = myStyle;
content_txt.multiline= true;
content_txt.wordWrap = true;
content_txt.html = true;
var story:XML = new XML();
story.ignoreWhite = true;
story.load("sample.html");
story.onLoad = function () {
content_txt.htmlText = story;
}
  这个是加载外部CSS跟HTML(其实是加载XML当HTML用-_-b )的。后来Den写了两种把样式写在AS里的方...[ 查看全文 ]

2016-02-19 标签:

HTML与CSS在Flash中的应用的相关文章

手机页面
收藏网站 回到头部