Hello,
I am creating a Simple Flash Maze Game,
and i have 2 'Movie Clips' that i want to react when the collide.
IE. When 'CHAR_LVL1' (A Movie Clip, controlled with the Arrow Keys) comes into contact with 'WALL_LVL1'. I want it to 'gotoAndStop(27);'
I am using the code:
What am i doing wrong.Code:onClipEvent(enterFrame) {
if (_root.CHAR_LVL1, hitTest(_root.WALL_LVL1)) {
gotoAndPlay(27);
}
}
FYI:
I am using Flash CS5 and Action Script 2.0
