|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
Flash动画说到底就是“遮罩+补间动画+逐帧动画”与元件(主要是影片剪辑)的混合物,通过这些元素的不同组合,从而可以创建千变万化的效果。
实例6、TextEnhancements
1、触及特征
在实例中,次要触及在FlashMX2004中援用和显现内部的CSS文件和html文件。这些都是在FlashMX2004中才有的新特征,使用也十分便利。本实例在FlashMX2004中的操纵十分复杂,不外这正从正面反应了它的功效壮大。
2、制造历程
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,其内容以下:
GiantSeaLionSpotted
Citizensscared,amazed
Today-OurCityAgiantsealionwasspottedtodayrampagingaroundthecitysmainsquare,scaringthousandsofinnocentpeoplejustoutforadailystrollinthebeautifuldowntowndistrict.
Noinjurieswerereportedaftertheanimalstwo-hourassaultoftheshoppingdistrictfamousforitssealionpursesandshoes,alsoknownasthe"sealiondistrict".WitnessessaidthecreaturecameoutoftheoceanneartheBurgerKingat42ndand1stAvenue,startlingmanyandstallingtraffic.
"Theanimalcausednearlyfourmilliondollarsofdamagetotheneighborhood,"saidJosephValente,ownerof"SeaLionsRUs"at43rdand2nd.Onlookerstothescenesaidthatthesealionappearedornery,butotherwiseingoodspirits.
Officialsareuncertainastowhen,ifever,thesealionmayreturn.Clickhereformore.
这个文件的内容是使用了后面所创立的css格局的html文件。(严厉来讲,此文件更像是一个xml文件。)
3、将一个名为sample.jpg的图片放到跟第1、二步所创立的文件的统一目次中。
4、新建一个FlashMX2004的文件,保留在跟后面所创立的文件地点的目次中。
5、用文本工具在场景中拉一个文本输出框,定名为content。在属性面板上设置如1所示。
6、在TimeLine中新建一个图层,定名为Action,在此层的Action面板下面增添以下语句:
/*Copyright2003Macromedia,Inc.Allrightsreserved.
ThefollowingisSampleCodeandissubjecttoallrestrictions
onsuchcodeascontainedintheEndUserLicenseAgreement
accompanyingthisproduct.
*/
varss:TextField.StyleSheet=newTextField.StyleSheet();//正文1
ss.load("sample.css");//正文2
content.styleSheet=ss;//正文3
content.multiline=true;
content.wordWrap=true;
content.html=true;
story=newXML();//正文4
story.ignoreWhite=true;
story.load("sample.html");//正文5
story.onLoad=function(){//正文6
content.htmlText=story;
}
正文1:界说一个变量ss,它的范例为TextField.StyleSheet。
正文2:读取sample.css文件的内容到ss中。这里要注重一切文件的保留路径要分歧。
正文3:设置文本框content的几个属性。
正文4:创立一个xml工具。
正文5:读进sample.html文件的内容到st
flash动画制作软件的界面没有太大的改变,只是在以前的属性面板右侧增加了两个新的选项“参数”和“滤镜”。 |
|