move(s)


    private function move(ball:animation_ch09_Ball):void
    {
     ball.x += ball.vx;
     ball.y += ball.vy;
     if(ball.x + ball.radius > stage.stageWidth)
     {
      ball.x = stage.stageWidth - ball.radius;
      ball.vx *= bounce;
     }