so9
1
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?
system
2
huh? no one can help this problem? Or maybe you dont understand what i am saying?
system
3
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");
}
system
4
i try code:
mc2.loadmovie(“fileA.swf”);
IT WORKS but when i try to click file1 button, it wont work.
system
5
What about…
on(release) {
this.mc2.loadMovie("fileA.swf");
}
system
7
I am not even sure if you can load a movie in a loaded movie. Never tried.