Your Ad Here
首页 | 编程语言 | 网站建设 | 游戏天堂 | 冲浪宝典 | 网络安全 | 操作系统 | 软件时空 | 硬件指南 | 病毒相关 | IT 认证
软讯网络 > 软件时空 > 工具软件 > Flash MX 2004 显示外部css和html文件
【标  题】:Flash MX 2004 显示外部css和html文件
【关键字】:c,文件,MX,2004,cs,20,Flash,html,css,htm,04,200,Flash,MX,2004,css,html
【来  源】:网络

Flash MX 2004 显示外部css和html文件

Your Ad Here

实例 Text Enhancements

  一、涉及特性

   在实例中,主要涉及在Flash MX 2004中引用和显示外部的css文件和html文件。这些都是在Flash MX 2004中才有的新特性,应用也非常方便。本实例在Flash MX 2004中的操作非常简单,不过这正从侧面反映了它的功能强大。

   二、制作过程

   1、建立一个文件,命名为sample.css。其内容如下:

headline {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 16px;
  font-weight: bold;
  display: block;
}
subheadline {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 13px;
  font-weight: bold;
  display: block;
}
mainBody {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 10px;
  display: block;
}
biline {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 11px;
  font-style: italic;
  display: inline;
}
A {
  font-family: Arial,Helvetica,sans-serif;
  color:cccccc;
  font-size: 10px;
  display: inline;
  text-decoration:underline;
}

  上面的css文件中,中括号里面的是对应的属性。比如font-family是字符集,font-size是字体大小,display是字体的显示方式,等等。只要有简单的网页制作知识就应该可以看懂的。

  2、新建一个文件,命名为sample.html,其内容如下:

<body>
<headline>Giant Sea Lion Spotted</headline>
<subheadline>Citizens scared, amazed</subheadline>
<biline>Today - Our City </biline>
<mainBody>A giant sea lion was spotted today rampaging around the city's main square,
scaring thousands of innocent people just out for a daily stroll in the beautiful downtown district.
<img align='right' src='sample.jpg'/>No 
injuries were reported after the animal's two-hour assault of the shopping 
district famous for it's sea lion purses and shoes, also known as the "sea 
lion district". Witnesses said the creature came out of the ocean near 
the Burger King at 42nd and 1st Avenue, startling many and stalling traffic. 
"The animal caused nearly four million dollars of damage to the 
neighborhood," said Joseph Valente, owner of "Sea Lions R' Us" 
at 43rd and 2nd. Onlookers to the scene said that the sea lion appeared 
ornery, but otherwise in good spirits. 
Officials are uncertain as to when, if ever, the sea lion may return.
<A HREF="http://www.macromedia.com">Click here for more.</A> 
</mainBody>
</body> 

  这个文件的内容是应用了前面所创建的css格式的html文件。(严格来说,此文件更像是一个xml文件。)

  3、将一个名为sample.jpg的图片放到跟第一、二步所创建的文件的同一目录中。

  4、新建一个Flash MX 2004的文件,保存在跟前面所创建的文件所在的目录中。

  5、用文本工具在场景中拉一个文本输入框,命名为content。在属性面板上设置如1所示。

  6、在TimeLine中新建一个图层,命名为Action,在此层的Action面板上面增加如下语句:

/* Copyright 2003 Macromedia, Inc. All rights reserved.
The following is Sample Code and is subject to all restrictions 
on such code as contained in the End User License Agreement 
accompanying this product.
*/
var ss:TextField.StyleSheet = new TextField.StyleSheet(); 
//注释1;定义一个变量ss,它的类型为TextField.StyleSheet.
ss.load("sample.css"); 
//注释2;读取sample.css文件的内容到ss中。这里要注意所有文件的保存路径要一致.
content.styleSheet = ss;
//注释3;设置文本框content的几个属性.
content.multiline= true;
content.wordWrap = true;
content.html = true;
story = new XML(); 
//注释4;创建一个xml对象.
story.ignoreWhite = true;
story.load("sample.html"); 
//注释5;读入sample.html文件的内容到story中.
story.onLoad = function () { 
//注释6;设置story的onLoad函数,函数的内容为设置content的htmlText为story
content.htmlText = story;
}

  三、实际用途

  从实例的制作过程中可以看到,以前在Flash中一行一行地调整文字显示效果的时候再也不会出现。Flash MX 2004中操作HTML文件非常灵活,修改显示效果也很方便,只要改一下相应的文件内容就可以了。这在用Flash来做比较多的文字显示处理的场景中非常有用。

Flash MX 2004 的历史面板(1):【上一篇】
Flash MX 2004 新模板应用(2):【下一篇】
【相关文章】
  • Flash MX 2004 的历史面板(1)
  • Flash MX 2004 的历史面板(2)
  • 制作多语言支持的Flash应用程序
  • 多语言Flash MX 2004安装方法
  • Flash MX 2004 给源文件减肥
  • 设置 Flash 影片制作、播放、打印的参数
  • Flash 沿轨迹运动的物体
  • flash mx 2004 菜鸟教程
  • 最简单的FLASH动画LOADING制作
  • 在Flash中制作带有进度条的Loading
  • 【随机文章】
  • 拆解教程(3)
  • 移动IP技术概述
  • 数组处理函数库
  • JS中实现A*算法寻路
  • Director 编写自己的行为(续)
  • nfs 困扰
  • FreeBSD Bsdsar介绍
  • PL/SQL学习笔记--单行函数
  • 如何避免职业生涯规划的盲点?
  • HP小型机主控台Console的说明与设置
  • 【相关评论】
    没有相关评论
    【发表评论】
    姓名:
    邮件:
    随机码*
    评论*
          
    |  首 页  |  版权声明  |  联系我们   |  网站地图  |
    CopyRight © 2004-2007 bbb软讯网络 All Rigths Reserved.