Hi there guys,
I have some problems with my actionscript (i not thery advanced in actionscript), the problem sounds like this:
I have a main video(MV), where i load a second video (SV), where i load a third video(TV). My problem is that when i click a button in SV to load a TV in it, the buttons form MV arent working anymore, when i press them, they load the first movie from SV.
the map is something like this:
[MV]
—access by 5 buttons----
[SV1] + [SV2] + [SV3] + [SV4] + [SV5]
—in every SV i have 4 buttons, thats call in a movieClip 4 TV—
(SV1)=[TV1] + [TV2] + [TV3] + [TV4]
the same for (SV2),(SV3),(SV4)
Here is the code for the 5 buttons in the (MV) that calls the SV:
on (release) {
if (_level0._root.currMovie == undefined) {
_level0._root.currMovie = “section1”;
container.loadMovie(“section1.swf”);
} else if (_level0._root.currMovie != “section1”) {
if (container._currentframe>=container.midframe) {
_level0._root.currMovie = “section1”;
container.play();
}
}
}
Here is the code from the 4 buttons in the (SV) that calls the TV:
on (release) {
if (_level1._root.currMovie == undefined) {
_level1._root.currMovie = “studio_audio”;
container2.loadMovie(“studio_audio.swf”);
} else if (_level1._root.currMovie != “studio_audio”) {
if (container2._currentframe >= container2.midframe) {
_level1._root.currMovie = “studio_audio”;
container2.play();
}
}
}
If you could help me, reply to this theard or BUZZ! me into Yahoo! Messenger (my ID is: tibi_iog)