效果图:
代码如下:
//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();
};
源文件:
进度控制演示.rar