初级:进度控制演示
"初级:进度控制演示"这篇Flash教程如果帮助了您,请记得分享给您身边的朋友,如果您有比"初级:进度控制演示"更好的教程请发布共享,帮助别人快乐自己!
效果图:
代码如下:
//function jindu_func() {
var B:Boolean = true;
onEnterFrame = function () {
this.jindu_mc.huakuai_mc.jindu_txt.text = _currentframe+"/"+_totalframes;
if (B) {
this.jindu_mc.huakuai_mc._x = int(_currentframe/_totalframes*100);
} else {
gotoAndStop(int(this.jindu_mc.huakuai_mc._x/100*_totalframes));
}
};
//}
this.jindu_mc.huakuai_mc.onPress = function() {
B = false;
this.startDrag(false, 0, 1, 100, 1);
};
onMouseUp = function () {
B = true;
play();
stopDrag();
};
var B:Boolean = true;
onEnterFrame = function () {
this.jindu_mc.huakuai_mc.jindu_txt.text = _currentframe+"/"+_totalframes;
if (B) {
this.jindu_mc.huakuai_mc._x = int(_currentframe/_totalframes*100);
} else {
gotoAndStop(int(this.jindu_mc.huakuai_mc._x/100*_totalframes));
}
};
//}
this.jindu_mc.huakuai_mc.onPress = function() {
B = false;
this.startDrag(false, 0, 1, 100, 1);
};
onMouseUp = function () {
B = true;
play();
stopDrag();
};
源文件:
进度控制演示.rar
