Score: 9
"Good Tutorial"
date: January 23, 2008
The code ALMOST works for the explosions, it's a case sensitive typo. To fix it simply lower case "Play" in this code you're given
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy)) {
_root.player.Play();
}
}
You'll know if it's done right as Flash will make the test blue (or some color code).
So it should read:
_root.player.play();
NOT
_root.player.Play();