Flash MX 2004新特性实例学习六
作者 佚名技术
来源 服务器技术
浏览
发布时间 2012-07-10
实例七、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,其内容如下: 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.Click here for more. 这个文件的内容是应用了前面所创建的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.load("sample.css"); //注释2 content.styleSheet = ss; |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于Flash MX 2004新特性实例学习六的所有评论