Actionscript issues with ENTER_FRAME

Hi,

I’m having trouble with this script below. Basically I want the movie to goto ‘scene 771’
as soon as the playhead reaches this frame…here’s the script

addEventListener(Event.ENTER_FRAME,myFunction2);
function myFunction2(event:Event) {
gotoAndPlay(1, “Scene 771”);
}

The script does take the movie to scene 771, but it doesn’t play the scene, it goes to frame 1 and stops. Also, The movie seems to get buggy as it wont play even if I right click and hit play or forward
Does anyone know why it does this? Or how I can solve the problem??