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

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
movie1[URL=“http://www.freewebs.com/felix_120192/-%20New%20Folder/movie%202.fla”]
movie2[URL=“http://www.freewebs.com/felix_120192/-%20New%20Folder/movie%203.fla”]
movie3

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

ps: happy easter :b:

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

But you need a level or a mc to load in…:wink:

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

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

will work.

scotty(-:

thanks guys

:thumb: