gotoAndStop frame 4 help :}

I have a little (ok, big) problem with my movieclip.
This probabaly should be in the game section, but it’s more of an actionscript help, so I think someone could help me out with this here.

My movieclip has actionscript code that checks if “char” movieclip touches it (hitTest) if so then it should gotoAndStop on frame 4 of the main timeline.

here’s the actual code:

 
onClipEvent (enterFrame) {
 if (this.hitTest(_root.char)) {
  gotoAndStop(4);
  
 }
}

However it doesn’t quite go to the frame 4, well I think it does, but the y and x positions are messed up, perhaps due to vCam on character. (I used the kirupa platform tutorial/code)
All I see in the frame 4 is a blue background, but nothing else, so is there a way to tell the x and y positions when loading frame 4?

Any help would be really appreciated :love_heart: