btw, soon I'll fix up the Demo i bit for user feedback.
Little preview:
-Stage widened
-Try again screen (I need a return to last frame code (not the last frame in the timeline, the frame the player was last on))
Walls don't work, Flash keeps telling me, "Operator '-' must be followed by an operand" on both right and Bottom walls.
Right wall:
onClipEvent(enterFrame){
if(this.hitTest(_root.char)){
root.char._x- = 10;
}
}
Bottom wall:
onClipEvent(enterFrame){
if(this.hitTest(_root.char)){
root.char._y- = 10;
}
}