1个回答
展开全部
假设你的元件名称是mc,要把它拖到横坐标在100到100,纵坐标 50在100之间的位置
mc.addEventListener(MouseEvent.MOUSE_DOWN,mcDrag)
function mcDrag(e:MouseEvent):void
{
mc.startDrag();
stage.addEventListener(MouseEvent.MOUSE_MOVE, moveHandler);
stage.addEventListener(MouseEvent.MOUSE_UP, stopHandler);
}
function moveHandler(e:MouseEvent):void
{
if(mc.x > 100 && mc.x < 200 && mc.y > 50 && mc.y < 100 )
{
mc.stopDrag();
stage.removeEventListener(MouseEvent.MOUSE_MOVE, moveHandler);
stage.removeEventListener(MouseEvent.MOUSE_UP, stopHandler);
nextFrame();
}
trace(mc.x,mc.y)
}
function stopHandler(e:MouseEvent):void
{
mc.stopDrag();
stage.removeEventListener(MouseEvent.MOUSE_MOVE, moveHandler);
stage.removeEventListener(MouseEvent.MOUSE_UP, stopHandler);
}
mc.addEventListener(MouseEvent.MOUSE_DOWN,mcDrag)
function mcDrag(e:MouseEvent):void
{
mc.startDrag();
stage.addEventListener(MouseEvent.MOUSE_MOVE, moveHandler);
stage.addEventListener(MouseEvent.MOUSE_UP, stopHandler);
}
function moveHandler(e:MouseEvent):void
{
if(mc.x > 100 && mc.x < 200 && mc.y > 50 && mc.y < 100 )
{
mc.stopDrag();
stage.removeEventListener(MouseEvent.MOUSE_MOVE, moveHandler);
stage.removeEventListener(MouseEvent.MOUSE_UP, stopHandler);
nextFrame();
}
trace(mc.x,mc.y)
}
function stopHandler(e:MouseEvent):void
{
mc.stopDrag();
stage.removeEventListener(MouseEvent.MOUSE_MOVE, moveHandler);
stage.removeEventListener(MouseEvent.MOUSE_UP, stopHandler);
}
追问
能解释具体些吗
追答
你直接发我邮箱我帮你做吧。
最好能在场景上圈出你的指定位置。
keensb@163.com
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询