Navigating between multiple scenes from a Movieclip

How could I navigate from one scene to another with buttons inside a movieclip having a rollover animation as well. On rollover of a button I want an animation to be played and when clicked on it should move onto a different scene.

movie1.btna.onRollOver = function() {
movie1.gotoAndPlay(“label1”);
};

movie1.btna.onRelease = function() {
gotoAndPlay(“Scene 1”, “frame1”);
};