1

我正在制作动作脚本中的游戏,我希望当用户选择任何区域等时,必须选择该区域的值,我有 7 个区域。如何识别哪个是单击的按钮或选定的区域

4

1 回答 1

3

您的问题不是很清楚,但是您可以添加鼠标侦听器来检查是否单击了按钮。您可以使用event.target来检测您实际单击的按钮。

this.mcButton1.addEventListener(MouseEvent.CLICK, handleButtonClick);
this.mcButton2.addEventListener(MouseEvent.CLICK, handleButtonClick);
this.mcButton3.addEventListener(MouseEvent.CLICK, handleButtonClick);

function handleButtonClick(event:MouseEvent):void
{
    var button:DisplayObject = DisplayObject(event.target);
    trace('I am clicked: ' + button);
}
于 2012-08-27T12:26:36.173 回答