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
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:)
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");
}