求flash AS3.0按住鼠标元件跟随移动代码!
求flashAS3.0按住鼠标元件跟随移动代码,具体要求如下:1、必须按住左键元件才跟随鼠标运动;2、元件运动为单方向;3、松开鼠标元件立即停止移动;4、代码需为Acti...
求flash AS3.0按住鼠标元件跟随移动代码,具体要求如下: 1、必须按住左键元件才跟随鼠标运动; 2、元件运动为单方向; 3、松开鼠标元件立即停止移动; 4、代码需为ActionScript 3.0; 5、Replay后此功能不失效;
自己摸索了一下,搞定!代码如下:
stop();
var secondRect:Rectangle=new Rectangle(580,490,130,0);
mc.addEventListener(MouseEvent.MOUSE_DOWN,onDown);
stage.addEventListener(MouseEvent.MOUSE_UP,onUp);
function onDown(event:MouseEvent):void{
mc.startDrag(true,secondRect);
}
function onUp(event:MouseEvent):void{
mc.stopDrag();
if(mc.x<690)mc.x=580;else
{
mc.x=580;
gotoAndPlay(119);
}
} 展开
自己摸索了一下,搞定!代码如下:
stop();
var secondRect:Rectangle=new Rectangle(580,490,130,0);
mc.addEventListener(MouseEvent.MOUSE_DOWN,onDown);
stage.addEventListener(MouseEvent.MOUSE_UP,onUp);
function onDown(event:MouseEvent):void{
mc.startDrag(true,secondRect);
}
function onUp(event:MouseEvent):void{
mc.stopDrag();
if(mc.x<690)mc.x=580;else
{
mc.x=580;
gotoAndPlay(119);
}
} 展开
3个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询