# 2 swf movies!

**URL:** https://forum.kirupa.com/t/2-swf-movies/19771
**Category:** Uncategorized
**Created:** [May 1, 2003, 1:27pm UTC](https://forum.kirupa.com/t/2-swf-movies/19771 "2003-05-01T13:27:48Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![bram](https://avatars.discourse-cdn.com/v4/letter/b/9d8465/32.png) [@bram](https://forum.kirupa.com/u/bram)
#### Post date: [May 1, 2003, 1:27pm UTC](https://forum.kirupa.com/t/2-swf-movies/19771/1 "2003-05-01T13:27:48Z")

</div>

Hi there, I’m back with an question again.

I know that it’s possible to load and unload swf movies inside a movie. But it will not work with me.  
I have 2 movies. lets say movie A.swf and B.swf Now what i want is to go from A to B and back again. From A to B is not a problem but to go back. I want to go from Movie B.swf to a scene in Movie A.swf  
Does someone know how to go to a scene from another movie?

greets Bram

---

<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: [May 1, 2003, 1:38pm UTC](https://forum.kirupa.com/t/2-swf-movies/19771/2 "2003-05-01T13:38:00Z")

</div>

Can you post your FLA’s?

TD

---

<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: [May 2, 2003, 7:07am UTC](https://forum.kirupa.com/t/2-swf-movies/19771/3 "2003-05-02T07:07:14Z")

</div>

no i can’t post my fla’s because its for my work, but if someone can tell me how i can do it ill would be happy.

i want (if i press a button) to load an swf movie. But when i do so it will load the movie from the start. But i want it to start from an other scene instead of the begin of de movie.

I hope i expained it well. Please let me know if someone knows how it can be done.

thanks  
Bram

---

<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: [May 2, 2003, 8:24am UTC](https://forum.kirupa.com/t/2-swf-movies/19771/4 "2003-05-02T08:24:21Z")

</div>

depends on how you are loading your external movie, are they targets or levels?

---

<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: [May 2, 2003, 8:26am UTC](https://forum.kirupa.com/t/2-swf-movies/19771/5 "2003-05-02T08:26:17Z")

</div>

loading a movie and jumping to a specific would be tough… and would require some sweats… =)

but!, if you are loading your movie A and B on a clip on the Main movie, you can still jump on a specific frame…

on your button for loading movie B which is on the main movie, for example, place…

on (release){  
myFrame = 10; // the frame number which you want to jum onto  
loadMovie(“movieA.swf”,container);  
}  
//container is a movieclip where you will load your Movie A or B

on the first frame of your movie B write…

gotoAndStop(\_root.myFrame);

something like that…  
hope that helps…
