我想用FLASH实现:影片从50帧处倒着播放到10帧处。中间不要停下行吗?

来源:百度知道 编辑:UC知道 时间:2024/06/06 01:30:52
我是刚注册的百度会员,所以没多少分。希望高手帮帮忙。

在时间轴上写代码
在第1帧上写
gotoAndStop(50);
目的是先跳到第50帧,如果不用跳就删掉这句话

在第50帧上写
this.onEnterFrame=function(){
if (this._currentframe>10){
prevFrame();
}
else{
deleter this.onEnterFrame;
}
}
就OK了,拿分走人

那就把50祯的复制到第10祯

倒着播preFrame
在第10帧处帧上加代码:stop();