this will make it goto the first frame of the next scene
on(release)
{
_root.gotoAndStop("Scene 2", 1);
}
that should be all you need you put it on the button when the user pushes the button it takes you to frame 1 of scene 2
just change the parameters within the () to what you need
if you only want it to got to a frame first put
on(release)
{
_root.gotoAndStop(10);
}
then on frame 10 put
_root.gotoAndStop("Scene 2", 1);