Play the Cirplosion Game - then look at the phases of developing a similar game.

  1. Try out the Cirplosion Game and note that it has quite a few levels.

  2. Step one: Mouse follows the ball, that's all.

  3. Step two: Mouse follows the ball and theBall grows while you hold the mouse button down.

  4. Step three: Detecting out of bounds violations, as well as making the Circle transparent so we can see through it to the moving objects underneath.

  5. Step four: Cirplosion Circle and Stars: Detecting overlap with four randomly placed stars using .hitTestObject() method example and Event.ENTER-FRAME.

  6. ...

  7. ...

  8. ...