1 FL 教程Flash 問答整理:在Flash動畫影片中怎樣使MC倒放? 周四 3月 03, 2011 7:43 am
Admin
Admin
問:怎樣使MC倒放,從100幀放到第1幀停止,通過按鈕控制正常播放MC,或倒放MC?如圖: :arrow: [您必需注冊并登錄才能查看本鏈接。]
答:
方法1、把這段代碼加到倒放那個按鈕去就可以了:(棄天笑提供)
on (release)
{
_root.onEnterFrame = function()
{
if(this.mc._currentframe == 1)
{
delete this.onEnterFrame;
}
this.mc.prevFrame();
}
}
方法2、(終極討厭提供) :arrow: [您必需注冊并登錄才能查看本鏈接。]
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();
};
};
效果:
源文件:
方法3、(kingofkofs提供)
源文件:
其實以上三種效果是一樣的,只要知道flash有前進和返回幀的函數就可以了,具體怎么實現是要看你放在哪里了. :arrow: [您必需注冊并登錄才能查看本鏈接。]]
答:
方法1、把這段代碼加到倒放那個按鈕去就可以了:(棄天笑提供)
on (release)
{
_root.onEnterFrame = function()
{
if(this.mc._currentframe == 1)
{
delete this.onEnterFrame;
}
this.mc.prevFrame();
}
}
方法2、(終極討厭提供) :arrow: [您必需注冊并登錄才能查看本鏈接。]
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();
};
};
效果:
源文件:
方法3、(kingofkofs提供)
源文件:
其實以上三種效果是一樣的,只要知道flash有前進和返回幀的函數就可以了,具體怎么實現是要看你放在哪里了. :arrow: [您必需注冊并登錄才能查看本鏈接。]]