Hello I am trying to build a transition just like this I kinda got working but I need some pros to help me out I had it working with these actions: I load the first swf:
- container1.loadMovie(“section1.swf”);
Then my button actions should be:
on (release) {
container1.loadMovie(“section1.swf”);
container1.swapDepths(1);
}
on (release) {
container2.loadMovie(“section2.swf”);
container2.swapDepths(1);
}
on (release) {
container3.loadMovie(“section3.swf”);
container3.swapDepths(1);
}
and so on…
The strange things happen because when I set a mc to a new Depth, the previous mc goes back to its original stacking order which may be under another mc, so it works only in one direction
so now I am trying this:
which=1
on (release) {
this[“container”+which].loadMovie(“section1.swf”);
this[“container”+which].swapDepths(1);
if (which == 1) {
which = 2;
} else {
which = 1;
}
}
I hope this make sense. Here is my new file sorry about the sloppy file:)