# Gosh, another problem! :(

**URL:** https://forum.kirupa.com/t/gosh-another-problem/3865
**Category:** Uncategorized
**Created:** [August 28, 2001, 3:15pm UTC](https://forum.kirupa.com/t/gosh-another-problem/3865 "2001-08-28T15:15:55Z")
**Posts on this page:** 5
**Page:** 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: [August 28, 2001, 3:15pm UTC](https://forum.kirupa.com/t/gosh-another-problem/3865/1 "2001-08-28T15:15:55Z")

</div>

here it is:

At the first frame of the movie, I have the action “stop”, so the movie will not go on, and stay in the first frame. Inside this frame, there is a movieclip, and inside this movieclip, I have a button.

When I click at the button, I want the main movie to go on and skip to frame 2. I’ve tried this actionscript inside the button:

on (release) {  
&nbsp &nbsp &nbsp &nbsp gotoAndStop (“Scene 1”, 2);  
}

“Scene 1” is how my main scene is called. Nothing happens when I click at the button… can anyone help me?

Thank you,  
Bruno Feu

---

<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: [August 28, 2001, 3:24pm UTC](https://forum.kirupa.com/t/gosh-another-problem/3865/2 "2001-08-28T15:24:02Z")

</div>

Under frame select expression and try using \_root.gotoAndPlay(1,2) under the frame box. i hope that helped

---

<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: [August 28, 2001, 6:20pm UTC](https://forum.kirupa.com/t/gosh-another-problem/3865/3 "2001-08-28T18:20:54Z")

</div>

Hi, I had a BIG pb trying to go to a scene from within a movieclip untill I found out that it is simply NOT POSSIBLE!  
The onky workaround I came up with (and this works!) is to use a label in the goto.  
But why bother with the scene anyway, all you want to do is go to the next frame, no?  
So: \_root.play()!

---

<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: [August 28, 2001, 11:41pm UTC](https://forum.kirupa.com/t/gosh-another-problem/3865/4 "2001-08-28T23:41:53Z")

</div>

actually, all you need to change is your gotoAndPlay. change it to this: gotoAndPlay(2); that’s all. you don’t need to specify the scene if it’s in the same one.

---

<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: [August 30, 2001, 3:47pm UTC](https://forum.kirupa.com/t/gosh-another-problem/3865/5 "2001-08-30T15:47:34Z")

</div>

using a combo of all you guys help I’ve made it out using:

\_root.gotoAndPlay(2)

thanks guys!
