2 MC or more

Hi

I wonder whether i can load 2 MC with multi swf file?

For Example

Background.swf has 5 buttons, named file1, file2,file3,file4 and file5.

when i click “file1” button, the action that i wrote is ;

on(release) {
_root.mc.loadMovie( “file1.swf”);
}

Then in file1.swf, they are 4 buttons again:- named fileA,fileB,fileC and fileD.
When i click “fileA” button, the action i wrote is;

on(release) {
_root.mc.mc2.loadMovie(“fileA.swf”);
}

Now, i click “file2” button, it does not work…How do i fix it?

huh? no one can help this problem? Or maybe you dont understand what i am saying?

Well I haven’t done much with loadMovie, but did you try these…

on(release) {
_parent.mc2.loadMovie("fileA.swf");
}

or

on(release) {
mc2.loadMovie("fileA.swf");
}

i try code:

mc2.loadmovie(“fileA.swf”);

IT WORKS but when i try to click file1 button, it wont work.

What about…

on(release) {
this.mc2.loadMovie("fileA.swf");
}

it still the same.

I am not even sure if you can load a movie in a loaded movie. Never tried.