How to link button-next scene

does anyone know how to link the button to the next scene so when they click it it goes to scene 4?
if u can paste me what i type in the actions thank you

on(release){
gotoAndPlay(“scene 4”, 1);
}

That is, if your next scene is named “scene 4”. If your next scene is named “phone” then you’d put in “phone” instead of “scene 4”. The number 1 after the comma is the frame number you’d want that scene to start in. If you put in 5 instead of 1, when you click the button it will go to scene 4 frame 5.

http://www.macromedia.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary381.html

and run a search in the forum… there’s a bug in flash when you use the gotoAndPlay from a Button/MovieClip within a MovieClip. :-\

oh ok thanks