flash as3中停止enterframe事件
有个mc剪辑,可以随鼠标移动我想鼠标单击后可以停止跟随事件我哪里写错了?vardian:Boolean=false;mc.addEventListener(Event.E...
有个mc剪辑,可以随鼠标移动
我想鼠标单击后可以停止跟随事件
我哪里写错了?
var dian:Boolean=false;
mc.addEventListener(Event.ENTER_FRAME,fensan);
function fensan(e:Event) {
mc.x=this.mouseX;
mc.y=this.mouseY;
}
stage.addEventListener(MouseEvent.CLICK,shen);
function shen(ev:MouseEvent):void {
if (dian) {
removeEventListener(Event.ENTER_FRAME,fensan);
}
} 展开
我想鼠标单击后可以停止跟随事件
我哪里写错了?
var dian:Boolean=false;
mc.addEventListener(Event.ENTER_FRAME,fensan);
function fensan(e:Event) {
mc.x=this.mouseX;
mc.y=this.mouseY;
}
stage.addEventListener(MouseEvent.CLICK,shen);
function shen(ev:MouseEvent):void {
if (dian) {
removeEventListener(Event.ENTER_FRAME,fensan);
}
} 展开
展开全部
你在移除侦探对象的时候,没有指定实例 应该是:
function shen(ev:MouseEvent):void {
if (dian) {
mc.removeEventListener(Event.ENTER_FRAME,fensan);
}
}
而且这里只想使影片跟着鼠标移动的话,不需要用到Event.ENTER_FRAME事件
用拖拽的话更方便,不易出错:
mc.startDrag();
mc.addEventListener(MouseEvent.CLICK , stopDragHandler);
function stopDragHandler(e){
mc.stopDrag();
mc.removeEventListener(MouseEvent.CLICK , stopDragHandler);
}
function shen(ev:MouseEvent):void {
if (dian) {
mc.removeEventListener(Event.ENTER_FRAME,fensan);
}
}
而且这里只想使影片跟着鼠标移动的话,不需要用到Event.ENTER_FRAME事件
用拖拽的话更方便,不易出错:
mc.startDrag();
mc.addEventListener(MouseEvent.CLICK , stopDragHandler);
function stopDragHandler(e){
mc.stopDrag();
mc.removeEventListener(MouseEvent.CLICK , stopDragHandler);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询