您现在的位置: 像素吧 >> 设计教程 >> Flash教程 >> 正文

初级:进度控制演示

来源:网络 日期:2008-2-20 23:34:18 作者:终极讨厌 查看:
"初级:进度控制演示"这篇Flash教程如果帮助了您,请记得分享给您身边的朋友,如果您有比"初级:进度控制演示"更好的教程请发布共享,帮助别人快乐自己!
  

效果图:

http://www2.flash8.net/UploadTeach/200705/20070517122717117.swf

代码如下:

//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

相关评论:

发表评论

  • 昵 称:
  • 内 容:
  •  
  • 虽然发表评论不用注册,但是为了保护您的发言权,建议您注册帐号!