Awsome!
This is probably the best tutorial on NG, and maybe even the web! You can learn alot of stuff from this, the n00bish stuff, and the Expert stuff. There is only 1 problem I encountered though...
In the Section Actionscript>Game(basic), when you give the actionscript for the hittest, it won't work unless you change the P in Play to a lower case p. So instead of this:
onClipEvent (enterFrame) {
if (this.hitTest(_root.ENEMY)) {
_root.PLAYER.Play();
}
}
It should be this:
onClipEvent (enterFrame) {
if (this.hitTest(_root.ENEMY)) {
_root.PLAYER.play();
}
}
See how the P in Play is a lower-case?!
Anyways, great tutorial! Hope to see more from you! :P