我试图创建一个小代码,其中舞台上的两个电影剪辑随机出现在随机位置。我可以随机地在舞台上出现一个物体。但是如何获得第二个对象?这是我的代码!
var myTimer:Timer = new Timer (1500);
myTimer.start();
myTimer.addEventListener(TimerEvent.TIMER, update);
function update(event:TimerEvent) : void
{
trace(Math.floor(Math.random() * 100 ));
object.x = Math.floor(Math.random() * 300 ) ;
object.y = Math.floor(Math.random() * 200 ) ;
//object.alpha = Math.floor(Math.random() * 1);
}
谢谢!