# Urgent help needed!

**URL:** https://forum.kirupa.com/t/urgent-help-needed/6553
**Category:** flash
**Created:** [October 10, 2002, 8:36am UTC](https://forum.kirupa.com/t/urgent-help-needed/6553 "2002-10-10T08:36:23Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![joana](https://avatars.discourse-cdn.com/v4/letter/j/ed655f/32.png) [@joana](https://forum.kirupa.com/u/joana)
#### Post date: [October 10, 2002, 8:36am UTC](https://forum.kirupa.com/t/urgent-help-needed/6553/1 "2002-10-10T08:36:23Z")

</div>

Hi every one, am not an expert in flash but with KIRUPA great site I managed to create a whole ‘simple’ but elegant website and its supposed to be didecated to my aunt and her art work, it was done months ago but still didn’t work ! why? a tiny problem thats moving from one scene to the other with just clicking buttons, I have this code on the button

on (release, releaseOutside) {  
gotoAndPlay (“wall”, 1);  
}

which is supposed to be taken me to the other scene called 'wall ’ but it didn’t ! I tried that a million times but it still wouldn’t work and then I got busy with life and left this subject on a side for a while but now am IMPARESSED cause I promised her and i didn’t finish it ! I want to finish this in anyway PLS HELP ME even if it was by posting the whole website site for any one of u who might be intersted just to correct this for me am sure its a simple tiny thing thats keeping me from publishing this website !  
pls help me as soon as possible am so disperete now !

many thanks in advance 🙂

---

<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: [October 10, 2002, 2:47pm UTC](https://forum.kirupa.com/t/urgent-help-needed/6553/2 "2002-10-10T14:47:07Z")

</div>

I would be happy to take a look at it and see what I could do. It seems like I problem I might be able to fix. You can post it or mabye even e-mail it to me if it is small enough. I have PM you my e-mail addresss.

---

<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: [October 11, 2002, 4:49am UTC](https://forum.kirupa.com/t/urgent-help-needed/6553/3 "2002-10-11T04:49:12Z")

</div>

The problem is, frame number 1 is frame number 1 no matter what scene you’re in. That is to say… the flash movie is read as frame 1 in scene 1, to frame (whatever) in the last scene. If you want to use scene names, use frame labels.

To make a frame label. Create a blank layer (I label mine “labels”) Select the frame you want to go to and hit F7 to insert a blank keyframe. With that frame selected, open the “Frame” panel. In the field provided enter a discriptive label.

Then your button script would look like this (if the frame label were “start”)

on (release, releaseOutside) {  
gotoAndPlay (“wall”, “start”);  
}
