0

我正在尝试制作一个对象,红色圆圈移动反弹到我舞台 onCLick 内的随机位置,并显示消息you touched my circle。我不太清楚我做错了什么。

这是我想出的

import flash.events.MouseEvent;

myCircle.addEventListener(MouseEvent.MOUSE_DOWN, onClick);

function onClick(e:MouseEvent):void
{
  trace("you touched myCircle");
  Math.floor(Math.random()*(1+High-Low))+Low;
}
var High = stage.stageWidth == 550, stage.stageHeight == 400;
var Low = stage.stageWidth == 0, stage.stageHeight == 0;
4

1 回答 1

3
var HighH:int=stage.stageHeight;
var HighW:int=stage.stageWidth;
var LowH:int=0; var LowW:int=0;
....
function onClick(e:MouseEvent):void
{
trace("you touched myCircle");
myCircle.x=Math.floor(Math.random()*(1+HighW-LowW))+LowW;
myCircle.y=Math.floor(Math.random()*(1+HighH-LowH))+LowH;
}

您需要为此设置圆圈的新坐标、用途xy属性。

于 2012-09-30T14:56:44.380 回答