Can I load a movie inside a loaded movie?

If I have a loaded movie in a flash website can I load another movie inside the loaded one?

but if you want to control something inside the loaded movie…
then you have to navigate through the main movie too…
for example if you load the moive to
_root.movie.lmovie.loadMovie("a…
and in the loaded movie you want it to go to frame 5 inside a movieclip that is _root.lmov.mc.gotoAndStop(5);
then you have to make it
_root.movie.lmovie.lmov.mc.gotoAndPlay(5);
NB! Make sure there are no movieclips with the same instance name inside the 2 movies… otherwize it’ll nit work

Thank you, but what is lmovie?

“lmovie”, “movie”, “lmov” and “mc” are just some randomly picked instance names of a bunch of movieclips… so to… explain the stuff for ya.