HitTestGoto

I wonder why this arent working:

onClipEvent (enterFrame) {
 if (this.hitTest(_root.bomb1)) {
  gotoAndStop("GameOver", 1);
 }
}

Thanks Albert:b:

you’ll have to give more info than that. my guess is your gotoAndPlay reference. [AS]onClipEvent (enterFrame) {
(this.hitTest(_root.bomb1)) ? _root.gotoAndStop(“GameOver”, 1) : null;
}[/AS]