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