1

如何在 Adob​​e CS6 Flash 中创建随机运动动画?

这是我使用的代码:

onClipEvent(enterFrame){
    this._alpha=Math.floor(100*Math.random());
    this._x=Math.floor(50*Math.random());
    this._y=Math.floor(50*Math.random());
}

它在动作脚本 3中不起作用。我想在单击按钮时开始我的动画,但它应该在不同的地方开始。那么该怎么做呢?我的影片剪辑实例名称是 f1

4

1 回答 1

0

尝试这个:

    addEventListener(Event.ENTER_FRAME, onEnterFrame)


    function onEnterFrame(e:Event):void 
    {
        f1.alpha = Math.floor(100*Math.random());
        f1.x = Math.floor(50*Math.random());
        f1.y = Math.floor(50*Math.random());
    }
于 2013-07-07T14:54:29.510 回答