在adobe cs6 flash中如何创建随机运动

时间:2013-07-07 13:55:44

标签: actionscript-3 flash

如何在Adobe 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

1 个答案:

答案 0 :(得分: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());
    }