Button doesn't load frame label

Hi there,

I have a simple MC with some AS that has the following:


this.onRelease = function(){
    trace('pressed to ratings...');
_root.gotoAndPlay("ratingLabel");
}

This MC is set in my first scene. My second scene has the frame label “ratingLabel” on frame 1, set as a “name” label. I know the button is getting the onRelease due to the trace firing, but the scene will not load - nothing happens.

Any idea why? Is there a better way to go about this? I’ve attached my project if you’d like to look. The opening scene is “Register” which has the arrow button, which should take you to the “Rating” scene, but doesn’t.