·您的位置: 首页 » 资源教程 » 创意设计 » Flash » 鼠标拉框批量操作影片剪辑

鼠标拉框批量操作影片剪辑

类别: Flash教程  评论数:0 总得分:0
  演示效果如下:

http://www.flash8.net/bbs/UploadFile/2005-7/2005715151821114.swf

« Full Screen »

点击这里下载源文件


//此为测试程序,因此只显示了效果,以下为AS脚本----------------------------------
stageL = 0;
stageT = 30;
stageR = Stage.width;
stageB = Stage.height;
//以上为初始化选区范围;
var my_mc = new Array();
//创建用于存储mc的数组;
onload();
reload_btn.onRelease = function() {
onload();
};
function onload() {
for (i=1; i<10; i++) {
test0.duplicateMovieClip("test"+i, i);
}
for (i=0; i<10; i++) {
my_mc.push(eval("test"+i));
tests = eval("test"+i);
tests._alpha = 100;
tests._x = random(200)+100;
tests._y = random(200)+100;
}
}
//初始化动画元素;
var mouseObj = new Object();
Mouse.addListener(mouseObj);
//监听鼠标事件;
mouseObj.onMouseDown = function() {
if (_xmouse>stageL && _xmouse<stageR && _ymouse>stageT && _ymouse<stageB) {
box_x = _xmouse;
box_y = _ymouse;
createEmptyMovieClip("box_mc", 50);
with (box_mc) {
lineStyle(1, 0xff0000, 80);
beginFill(0xff0000, 10);
moveTo(0, 0);
lineTo(0, 1000);
lineTo(1000, 1000);
lineTo(1000, 0);
lineTo(0, 0);
endFill();
_width = 1;
_height = 1;
}
box_mc.onEnterFrame = function() {
this._width = Math.abs(_xmouse-box_x);
this._height = Math.abs(_ymouse-box_y);
this._x = _xmouse<box_x ? _xmouse : box_x;
this._y = _ymouse<box_y ? _ymouse : box_y;
};
}
};
//以上为在选区范围内创建选框;
mouseObj.onMouseUp = function() {
//本函数为处理选框范围内的数据;
if (box_mc != undefined) {
//如果选框以被构造边执行control函数;
control();
box_mc.removeMovieClip();
}
};
function control() {
for (i=0; i<my_mc.length; i++) {
if (box_mc.hitTest(my_mc[i])) {
//以下程序为操作在选框范围内或者和选框接触了的mc所要执行的事件;
hits = my_mc[i];
hits._alpha = 40;
//为了可视化效果,我将被选种的所有mc的透明度改变了。
}
}
}
-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1