1

在我的应用程序中,我有一个连接到鼠标的鼠标光标。但是它不会让我点击我的应用程序中的按钮,这对我来说是一个大问题,因为按钮对于我需要做的事情是必不可少的。

我是 AS 的新手,所以任何帮助都将不胜感激!

stage.addEventListener(MouseEvent.MOUSE_MOVE, draw_cursor);
stage.addEventListener(Event.MOUSE_LEAVE, hide_cursor);

Mouse.hide();

function draw_cursor(event:MouseEvent):void
{
    my_cursor_mc.visible = true;
    my_cursor_mc.x = event.stageX;
    my_cursor_mc.y = event.stageY;
}


function hide_cursor(event:Event):void
{
    my_cursor_mc.visible=false;
}

我尝试使用这个(下图),但非常麻烦,不得不按下按钮让光标消失然后我能够点击按钮(不是很理想):

stage.addEventListener(MouseEvent.CLICK, hide_cursor);
4

1 回答 1

3

听起来您的光标可能正在窃取您的按钮的鼠标事件。在您的顶级代码(或构造函数)中尝试添加:

// Disable mouse events for cursor    
my_cursor_mc.mouseEnabled = false; 

如果您的鼠标事件有任何子对象还添加:

// Disable mouse events for any children of the cursor
my_cursor_mc.mouseChildren = false; 
于 2012-12-13T15:16:57.280 回答