# Help... (flash within a flash winthin a flash)

**URL:** https://forum.kirupa.com/t/help-flash-within-a-flash-winthin-a-flash/185793
**Category:** Uncategorized
**Created:** [April 16, 2006, 4:41pm UTC](https://forum.kirupa.com/t/help-flash-within-a-flash-winthin-a-flash/185793 "2006-04-16T16:41:24Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![felix\_120192](https://avatars.discourse-cdn.com/v4/letter/f/47e85d/32.png) [@felix\_120192](https://forum.kirupa.com/u/felix_120192)
#### Post date: [April 16, 2006, 4:41pm UTC](https://forum.kirupa.com/t/help-flash-within-a-flash-winthin-a-flash/185793/1 "2006-04-16T16:41:24Z")

</div>

i am having problem with loading flash movies inside a flash movie… well more like loading a flash movie inside a flash movie inside another flash movie.

what my problem is, is that i have a movie… lets call it movie 1, i want movie 2 to load inside of movie 1 (i managed to get that working correctly and smoothly), now my problem is loading movie 3 inside of movie 2, it just wont load… can somebody pelase help me… thanks

i added a link to my 3 files below

[details](http://www.freewebs.com/felix_120192/%2D%20New%20Folder/detail%20of%20my%20dilema.doc)  
[movie1](http://www.freewebs.com/felix_120192/%2D%20New%20Folder/movie%201.fla)[URL=“[http://www.freewebs.com/felix\_120192/-%20New%20Folder/movie%202.fla](http://www.freewebs.com/felix_120192/%2D%20New%20Folder/movie%202.fla)”]  
movie2[URL=“[http://www.freewebs.com/felix\_120192/-%20New%20Folder/movie%203.fla](http://www.freewebs.com/felix_120192/%2D%20New%20Folder/movie%203.fla)”]  
movie3

thanks ahead of time, u have no idea how important this is to me ^^

ps: happy easter 🅱

---

<div class="post-metadata">

### Author: ![devon](https://avatars.discourse-cdn.com/v4/letter/d/f9ae1b/32.png) [@devon](https://forum.kirupa.com/u/devon)
#### Post date: [April 17, 2006, 9:30am UTC](https://forum.kirupa.com/t/help-flash-within-a-flash-winthin-a-flash/185793/2 "2006-04-17T09:30:11Z")

</div>

the only problem I see is you use this code

on (release) {  
\_root.contents.loadMovie(“brain.swf”);  
}

I dont get the point of that \_root.contents if I lood an movie into another I just do loadMovie(“brain.swf”); or loadMovieNum(“brain.swf”); if I want to load it Transparent into the movie I do alrady see, so the visible part of movie 2 loads over movie 1 but you stil can see parts of movie 1:)

greats devon

---

<div class="post-metadata">

### Author: ![scotty](https://avatars.discourse-cdn.com/v4/letter/s/91b2a8/32.png) [@scotty](https://forum.kirupa.com/u/scotty)
#### Post date: [April 17, 2006, 10:21am UTC](https://forum.kirupa.com/t/help-flash-within-a-flash-winthin-a-flash/185793/3 "2006-04-17T10:21:10Z")

</div>

> [@devon](#):
>
> …I dont get the point of that \_root.contents if I lood an movie into another I just do loadMovie(“brain.swf”); or loadMovieNum(“brain.swf”)…

But you need a level or a mc to load in…😉

You have reference to \_root in the second movie, \_root refers to the main timeline, as soon as you load movie2 in movie 1, the main timeline is movie 1’s timeline and the path is no longer correct  
Skip the \_root

```auto
on (release) {
	contents.loadMovie("nervous.swf");
}

```

will work.

scotty(-:

---

<div class="post-metadata">

### Author: ![felix\_120192](https://avatars.discourse-cdn.com/v4/letter/f/47e85d/32.png) [@felix\_120192](https://forum.kirupa.com/u/felix_120192)
#### Post date: [April 17, 2006, 4:54pm UTC](https://forum.kirupa.com/t/help-flash-within-a-flash-winthin-a-flash/185793/4 "2006-04-17T16:54:13Z")

</div>

thanks guys

---

<div class="post-metadata">

### Author: ![scotty](https://avatars.discourse-cdn.com/v4/letter/s/91b2a8/32.png) [@scotty](https://forum.kirupa.com/u/scotty)
#### Post date: [April 17, 2006, 5:56pm UTC](https://forum.kirupa.com/t/help-flash-within-a-flash-winthin-a-flash/185793/5 "2006-04-17T17:56:03Z")

</div>

:thumb:
