# Load movie and certain scene

**URL:** https://forum.kirupa.com/t/load-movie-and-certain-scene/561
**Category:** Uncategorized
**Created:** [July 22, 2002, 7:46pm UTC](https://forum.kirupa.com/t/load-movie-and-certain-scene/561 "2002-07-22T19:46:16Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![royce101](https://avatars.discourse-cdn.com/v4/letter/r/a9adbd/32.png) [@royce101](https://forum.kirupa.com/u/royce101)
#### Post date: [July 22, 2002, 7:46pm UTC](https://forum.kirupa.com/t/load-movie-and-certain-scene/561/1 "2002-07-22T19:46:16Z")

</div>

Hello there,  
I was wondering if you could help with a flash question.

I have made a slightly complicated movie-menu system for a portfolio.  
I was making separate .swf’s but had problems linking them.

So I combined some.

I combined an intro movie into scene 1. I added the menu system to scene 2.

From Scene 2 you can select objects on my menu. One object that I could not include was a 122 layer flash movie. So when you click this button it loads the flash movie. The movie goes fullscreen then when finished goes back to the original file and closes itself. The problem is that I do not want it to go to the intro movie from scene 1. Is there a way to load the original movie AND send it to scene 2?

## Thank You if you can help, Royce Bean [www.grrraphyx.com](http://www.grrraphyx.com)

---

<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: [July 23, 2002, 3:52am UTC](https://forum.kirupa.com/t/load-movie-and-certain-scene/561/2 "2002-07-23T03:52:45Z")

</div>

think you could simply add a  
gotoAndPlay(“Scene name”, framenumber);  
at the end of your mc

---

<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: [July 23, 2002, 3:01pm UTC](https://forum.kirupa.com/t/load-movie-and-certain-scene/561/3 "2002-07-23T15:01:25Z")

</div>

I’ve tried to add

loadMovieNum(“mainmovie.swf”, 0);  
gotoAndStop(“Scene 2”, 1);

* * *

I’ve also tried this example:  
If my movie has the url

mainmovie.swf?label=main

then the only scripting you need in frame 1 is:

if(label eq “”){ //no label set, jump to the beginning of the movie  
gotoAndPlay(2);  
}

Referring website: [http://www.bokelberg.de/actionscript/23.html](http://www.bokelberg.de/actionscript/23.html)

* * *

Still no luck…

Thanks,  
Royce
