我正在尝试制作一个对象,红色圆圈移动反弹到我舞台 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;