问:怎样使MC倒放,从100帧放到第1帧停止,通过按钮控制正常播放MC,或倒放MC?如图:
答:方法1、把这段代码加到倒放那个按钮去就可以了:(弃天笑提供)
on (release)
{
_root.onEnterFrame = function()
{
if(this.mc._currentframe == 1)
{
delete this.onEnterFrame;
}
this.mc.prevFrame();
}
}
方法2、(终极讨厌提供)
a_btn.onRelease = function() {
delete this._parent.mc.onEnterFrame;
this._parent.mc.play();
};
b_btn.onRelease = function() {
this._parent.mc.stop();
this._parent.mc.onEnterFrame = function() {
this.prevFrame();
};
};
效果:
源文件:
怎样使MC倒放.rar
方法3、(kingofkofs提供)
大家都给回复了呀...看看这个:
源文件:
怎样使MC倒放rar
其实以上三种效果是一样的,只要知道flash有前进和返回帧的函数就可以了,具体怎么实现是要看你放在哪里了...