1

我正在用 Flash 在 AS3 中制作一个点击游戏。

我通过创建一个新类“Souris”改变了光标的皮肤。它工作得很好。现在我正在尝试更改光标在场景中的对象上时的皮肤。

我读过 MouseEvent.ROLL_OVER 是个好方法,但我不知道该怎么做......

我有这样的 Souris 课程:

    public class Souris extends MovieClip
    {
 private var engine:Engine;
        private var stageRef:Stage;
        private var p:Point = new Point(); 

        public function Souris(stageRef:Stage)
        {
            Mouse.hide(); //make the mouse disappear
            mouseEnabled = false; //don't let our cursor block anything
mouseChildren = false;

            this.stageRef = stageRef;
            x = stageRef.mouseX;
            y = stageRef.mouseY;

            stageRef.addEventListener(MouseEvent.MOUSE_MOVE, updateMouse, false, 0, true);
            stageRef.addEventListener(Event.MOUSE_LEAVE, mouseLeaveHandler, false, 0, true);
            stageRef.addEventListener(Event.ADDED, updateStack, false, 0, true);
            stageRef.addEventListener(MouseEvent.ROLL_OVER,hover);

        }

        private function updateStack(e:Event) : void
        {
            stageRef.addChild(this);
        }
        private function hover(e:MouseEvent):void {
               souris.visible = false;
            }

        private function mouseLeaveHandler(e:Event) : void
        {
            visible = false;
            Mouse.show(); //in case of right click
            stageRef.addEventListener(MouseEvent.MOUSE_MOVE, mouseReturnHandler,    false, 0, true);
        }

        private function mouseReturnHandler(e:Event) : void
        {
            visible = true;
            Mouse.hide(); //in case of right click
            removeEventListener(MouseEvent.MOUSE_MOVE, mouseReturnHandler);
        }

        private function updateMouse(e:MouseEvent) : void
        {
            x = stageRef.mouseX;
            y = stageRef.mouseY;

            e.updateAfterEvent();
        }

    }

}
}

在我的主要课程(引擎课程)中,我有:

private var souris:Souris;

public function Engine(){



                        souris = new Souris(stage);
            stage.addChild(souris);

        }
private function startGame(e:Event):void{
....
..

我试图加入“Souris”课程

stageRef.addEventListener(MouseEvent.ROLL_OVER,hover);

private function hover(e:MouseEvent):void {
Engine.souris.visible = false; 
handCursor.visible = true ;
}

但这似乎是错误的......我不知道在我的悬停功能中放什么。(我的图书馆里有“handCursor”)。

非常感谢您的帮助!

4

1 回答 1

0

如果您的库中有“handCursor”,那么您需要为其分配一个类,例如“HandCursor”。我建议类以大写字母开头。

所以你的代码需要创建它的一个新实例然后显示它,比如

var handCursor:HandCursor = new HandCursor; handCursor.visible = false;

handCursor.visible = false;使其不可见,然后使其可见,您将:

handCursor.visible = true;

此外,handCursor 是一个局部变量,如果放在一个函数中,要使其在所有函数中都可以全局使用,您需要将它放在类的开头。

另外,你有什么错误吗?如果是这样,请分享它们。

于 2013-10-13T17:07:53.003 回答