Does anyone know how to make a button to a frame?

HI everyone! I want to know how to make a button that will lead to another frame, like "Click here to go alternate ending 1. and “Click here to go to Alternate ending 2” I also have 1 more question. How do i make something move even while the movie is paused. I know it has something to do with make it a symbol movie clip right?:trout:

Oh yea, 1 more thing, How do i pause the movie so people can answer the button question. Like what im making now i have 2 ppl versing each other and then it askes who should win, and i need to make it so that people can click the button they want, so the movie waits for them to make a choice then i goes to the frame i put that ending on. Wow. Yea, thats what i need to know.

to make a symbol hit [ Ctrl ]+[ F8 ]
going somewhere (put in actions for button/mc):

on(release){
gotoAndPlay(frame);
}

to pause a movie:

on(release){
_root.stop();
}

to continue playing:

on(release){
_root.play();
}

ask more if you’ll have any probz

Thanks for the button help, but i also want to klnow not how to create a pause button, though that did help me too :slight_smile: but how to make the movie automatically pause when it gets to the button part till they select what they want.

put an action to a frame (make a keyframe - hit [ F6 ])

stop();

Hey, youve been a great help fluid! Thanks a lot!