如何使用movieclip作为AS3中另一个可拖动对象的边界?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用movieclip作为AS3中另一个可拖动对象的边界?相关的知识,希望对你有一定的参考价值。
如何使用movieclip作为另一个可拖动对象的边界?
我所知道的是,我们可以在开始拖动时使用矩形作为边界。
dragable_mc.addEventListener(MouseEvent.MOUSE_DOWN, start_drag);
function start_drag(e:MouseEvent)
{
var rect:Rectangle = new Rectangle(0,0,100,100);
dragable_mc.startDrag(false, rect);
}
答案
如果它是动态形状,则必须在拖动时每帧记录可拖动对象的x,y坐标。然后使用边界执行位图 - 命中点测试以检查对象是否超出范围。如果它在外面,则返回到不受限制的最后一个坐标。
编辑:
您需要重命名的两个变量是dragTarget和bound_mc
dragTarget是你的dragable_mc
bound_mc是边界的动画片段的名称。
bound_mc需要是png格式,并且越界区域必须是透明的。例如:
import flash.geom.Point;
import flash.geom.Rectangle;
import flash.events.MouseEvent;
import flash.events.Event;
import flash.display.BitmapData;
stop();
var bmd:BitmapData =new BitmapData(600, 400, true, 0x000000);
var rect:Rectangle;
var lastPt:Point = new Point();
function init():void {
rect = new Rectangle(0, 0, stage.stageWidth, stage.stageHeight);
setUpBitmap();
}
function setUpBitmap():void {
bmd.draw(bound_mc);
dragTarget.addEventListener(MouseEvent.MOUSE_DOWN, start_drag);
}
function start_drag(event:MouseEvent):void {
dragTarget.removeEventListener(MouseEvent.MOUSE_DOWN, start_drag);
stage.addEventListener(MouseEvent.MOUSE_UP, stop_drag);
lastPt.x = dragTarget.x;
lastPt.y = dragTarget.y;
dragTarget.startDrag(false, rect);
this.addEventListener(Event.ENTER_FRAME, logPoint);
}
function stop_drag(event:MouseEvent):void {
this.removeEventListener(Event.ENTER_FRAME, logPoint);
stage.removeEventListener(MouseEvent.MOUSE_UP, stop_drag);
dragTarget.addEventListener(MouseEvent.MOUSE_DOWN, start_drag);
dragTarget.stopDrag();
}
function logPoint(event:Event):void {
var curPoint:Point = new Point(stage.mouseX, stage.mouseY);
if ( bmd.hitTest(new Point( bound_mc.x, bound_mc.y ), 0, curPoint) ) {
lastPt = curPoint;
} else {
dragTarget.x = lastPt.x;
dragTarget.y = lastPt.y;
stage.dispatchEvent(new MouseEvent(MouseEvent.MOUSE_UP));
}
}
init();
以上是关于如何使用movieclip作为AS3中另一个可拖动对象的边界?的主要内容,如果未能解决你的问题,请参考以下文章
我如何使用Movieclip名称数组控制as3中的这些剪辑?