怎样使MC倒放

作者:袖梨 2022-07-02

答:方法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();
};
};

相关文章

精彩推荐