我从原文件中看到了烟雾字效果~~~
但是我在看as时发现,如果我要让这种效果能象电影一样一句话一句话放过去,那该如何做??
代码如下:
//----------------------------
// Text Effect v.2
// Alessandro Crugnola
// Sephiroth
//
www.sephiroth.it//----------------------------
//----------------------------
// Global Vars
// Edit these vars
//----------------------------
ice = "Made By Flowingice 2002.12.24";
frequency = 50 //频率120
velocity = 8 //速度8
kern = 9 //文字间隔13
timer_sequence = 40 //时间频率300
//----------------------------
total = ice.length;
width = kern
xstart = mc0._x
var i = 0;
while(i < total)
{
mc0.duplicateMovieClip('mc'+ (i+1),i)
do
{
this['mc'+(i+1)].final = ice.charCodeAt(i)
this['mc'+(i+1)].starting = 48 + random(74)
} while(ice.charCodeAt(i) == this['mc'+(i+1)].starting)
this['mc'+(i+1)]._x = xstart + (width*i)
this['mc'+(i+1)].startAfter = timer_sequence*i
this['mc'+(i+1)].frequency = frequency
this['mc'+(i+1)].velocity = velocity
i++
}
mc0._visible = 0
//----------------------------
下面是原文件
相关文件:
点这儿打开