复制内容到剪贴板
代码:
var IMAGE_WIDTH = 100;
var sccrol_width = scrollBG_mc._width*IMAGE_WIDTH/images_mc._width;
var xishu:Number = IMAGE_WIDTH/sccrol_width;
var img_x = images_mc._x;
tpscroll_mc._width = sccrol_width;
tpscroll_mc.onPress = function() {
var yx = images_mc._x;
this.startDrag(false, scrollBG_mc._x, scrollBG_mc._y-4, scrollBG_mc._width+scrollBG_mc._x-sccrol_width, scrollBG_mc._y-4);
this.onEnterFrame = function() {
var _posX:Number = -(tpscroll_mc._x-scrollBG_mc._x)*xishu+img_x;
images_mc._x += (_posX-images_mc._x)*.2;
Math.abs(_posX-images_mc._x)<.2 && delete this.onEnterFrame;
};
};
tpscroll_mc.onRelease = function() {
this.stopDrag();
//delete this.onEnterFrame;
};
tpscroll_mc.onReleaseOutside = tpscroll_mc.onRelease;刚刚才把闪吧的帖子回了。