# Movie Clips & Buttons- NEED HELP!

**URL:** https://forum.kirupa.com/t/movie-clips-buttons-need-help/42459
**Category:** Uncategorized
**Created:** [February 9, 2004, 3:21pm UTC](https://forum.kirupa.com/t/movie-clips-buttons-need-help/42459 "2004-02-09T15:21:32Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![mikeyc2k](https://avatars.discourse-cdn.com/v4/letter/m/2bfe46/32.png) [@mikeyc2k](https://forum.kirupa.com/u/mikeyc2k)
#### Post date: [February 9, 2004, 3:21pm UTC](https://forum.kirupa.com/t/movie-clips-buttons-need-help/42459/1 "2004-02-09T15:21:32Z")

</div>

I know this has got to be something really easy… but I’m having the worst time with it. I have a movie clip with several buttons. I want the buttons to move the user to different scenes within the movie. I’ve tried “GoToandPlay”, targeting my scene and frame label… but nothing. I’ve tried using “\_root” or “\_level0” to target my scene… and nothing.

What actionscript do i have to use in order to have the button in the movie clip send the user to a specific frame label within a scene?

btw… I’m using FlashMX.

Thanks for any and all advice!

mikeyc2k

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [February 9, 2004, 3:24pm UTC](https://forum.kirupa.com/t/movie-clips-buttons-need-help/42459/2 "2004-02-09T15:24:32Z")

</div>

It would be nice if you could post some code you use, for us to know in which level each movie is.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [February 9, 2004, 4:15pm UTC](https://forum.kirupa.com/t/movie-clips-buttons-need-help/42459/3 "2004-02-09T16:15:22Z")

</div>

the movie is pretty basic… i have the main movie that has two scenes… Home and Revelation… Revelation has a background graphic and a few other small graphics and a frame label “Band”. I have a navigation movie clip that contains a set of buttons, one of those being “Band Bios”. All I want is for the user to click the “Band Bios” button and be taken to the frame label “Band” in scene “Revelation”. This seems like it should be so easy and I’m sure I’m just being lame and missing something. But when I use the Normal Mode to assign a GoToandPlay action, selecting scene “Revelation” and frame label “Band”, nothing happens when I click on the button. The same thing happens if I try using “\_root” or “level0” before the “GoToandPlay” action.

Here’s the code I’ve tried so far on the button:

on (release) {  
gotoAndPlay(“Revelation”, “band”);  
}

on (release) {  
\_root.gotoAndPlay(“Revelation”, “band”);  
}

on (release) {  
\_level0.gotoAndPlay(“Revelation”, “band”);  
}

Does this make more sense?

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [February 9, 2004, 4:22pm UTC](https://forum.kirupa.com/t/movie-clips-buttons-need-help/42459/4 "2004-02-09T16:22:18Z")

</div>

i’m not sure but I think you should try this one:

on (release) {  
gotoAndPlay(“Revelation”, “band”);  
}

Also, check for that label name, although as far as I know if you point to a frame label that doesn’t exist the movie will play the scene from frame 1.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [February 9, 2004, 4:32pm UTC](https://forum.kirupa.com/t/movie-clips-buttons-need-help/42459/5 "2004-02-09T16:32:34Z")

</div>

Have you tried  
[AS]on (release) {  
\_root.gotoAndPlay(“Band”);  
}

[/AS]  
?

scotty(-:
