Movie clip inside a movie clip

hi,

I’ve loaded a movie clip into my main movie.
Inside that movie clip there is another movie clip.
I want to load another external file into the second movie clip but it wont load for some reason.

Can anyone help?

Thanks

Code you are using to achieve this is what exactly?

Viru.

If you load it on press of a button, place this on the button:
[AS]
on(release){
_root.main.inside.loadMovie(“amovie.swf”)
}
[/AS]

or, if on a frame:
[AS]
_root.main.inside.loadMovie(“amovie.swf”)
[/AS]

Make sure both the movieclips have instance names. In this example, ‘main’ and ‘inside’ are the twoi instance names of the two movies, inside in main and main on the main timeline.