frame(s)


    public function onEnterFrame(event:Event):void {
     ball.x = centerX + Math.sin(angle) * radius;
     ball.y = centerY + Math.cos(angle) * radius;
     angle += speed;
    }
   }
  }