ActionScript 3 AS3检测鼠标是否在舞台上方
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3检测鼠标是否在舞台上方相关的知识,希望对你有一定的参考价值。
var mouseIsOver:Boolean = false;
stage.addEventListener(MouseEvent.MOUSE_MOVE, mouseMoved);
function mouseMoved(evt:Event):void
{
mouseIsOver = true;
stage.removeEventListener(MouseEvent.MOUSE_MOVE, mouseMoved);
stage.addEventListener(Event.MOUSE_LEAVE, mouseLeft);
}
function mouseLeft(evt:Event):void
{
mouseIsOver = false;
stage.removeEventListener(Event.MOUSE_LEAVE, mouseLeft);
stage.addEventListener(MouseEvent.MOUSE_MOVE, mouseMoved);
}
以上是关于ActionScript 3 AS3检测鼠标是否在舞台上方的主要内容,如果未能解决你的问题,请参考以下文章
ActionScript 3 AS3简易鼠标平移
ActionScript 3 AS3检测按键
ActionScript 3 鼠标事件使用AS3的简单绘图应用程序
ActionScript 3 像素完美碰撞检测AS3
在 Actionscript 3 中拖动时检测鼠标离开阶段
ActionScript 3 AS3检测flash播放器类型 - broswer插件,独立,IDE等