# HELP! Controlling External Movies

**URL:** https://forum.kirupa.com/t/help-controlling-external-movies/6149
**Category:** flash
**Created:** [September 30, 2002, 7:11pm UTC](https://forum.kirupa.com/t/help-controlling-external-movies/6149 "2002-09-30T19:11:49Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Pandakid](https://avatars.discourse-cdn.com/v4/letter/p/bbe5ce/32.png) [@Pandakid](https://forum.kirupa.com/u/Pandakid)
#### Post date: [September 30, 2002, 7:11pm UTC](https://forum.kirupa.com/t/help-controlling-external-movies/6149/1 "2002-09-30T19:11:49Z")

</div>

Howdy,

I have a movie (movie1.swf) which loads “movie2.swf” onto level 2. What  
is the scripting to make it go right to a specific frame in  
“movie2.swf”? What if I wanted it to go to a specific scene in  
“movie2.swf” right away upon load? Is it possible?

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: [September 30, 2002, 7:19pm UTC](https://forum.kirupa.com/t/help-controlling-external-movies/6149/2 "2002-09-30T19:19:06Z")

</div>

It is possible. Load the movie into level2 and use

\_level2.gotoAndPlay(wherever)  
\_leve2.gotoAndStop(wherever).

---

<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: [September 30, 2002, 7:22pm UTC](https://forum.kirupa.com/t/help-controlling-external-movies/6149/3 "2002-09-30T19:22:08Z")

</div>

Try this

---

<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: [September 30, 2002, 7:51pm UTC](https://forum.kirupa.com/t/help-controlling-external-movies/6149/4 "2002-09-30T19:51:30Z")

</div>

Flex, thanks for the quick response, but I’m still hitting a snag. Here is the script I used:

Frame 2 of my movie:

loadMovieNum(“navigation.swf”, 2);

Frame 3 of my movie:

\_level2.gotoAndPlay(“cart”, 1)

“cart” is the name of the scene I would like “navigation.swf” to go to. BTW, I wasn’t able to view the file you had left as my current computer is secured Fort-Knox-style. Thanks again.

---

<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: [September 30, 2002, 7:57pm UTC](https://forum.kirupa.com/t/help-controlling-external-movies/6149/5 "2002-09-30T19:57:11Z")

</div>

It won’t go there if the movie is not loaded. Use a frames loaded check to see if the movie is loaded yet then go to the scene.

---

<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: [September 30, 2002, 8:05pm UTC](https://forum.kirupa.com/t/help-controlling-external-movies/6149/6 "2002-09-30T20:05:45Z")

</div>

That was indeed the problem. Thanks for the help!
