Oh, yes, sorry, I got busy with my personal sites 
It's an easy fix really. Set your movie up how you need, put everything where you want it. Let's say you are going to have the buttons and what not stat at frame 5, instead of frame 1.
on the actual page buttons find this line:
Code:
} else if (_root._currentframe == "1") {
change the "1" to "5" then sequentially for each of the other "else if's" on that button. Then change the same lines accordingly for the other 5 buttons.
so for a full example, the page1 button would have this code:
Code:
on (release) {
if (_root._cont == 0) {
_root.p1.gotoAndPlay("in1");
} else if (_root._currentframe == "5") {
_root.p1.gotoAndPlay("out1");
_root.cont = 1;
} else if (_root._currentframe == "6") {
_root.p2.gotoAndPlay("out2");
_root.cont = 1;
} else if (_root._currentframe == "7") {
_root.p3.gotoAndPlay("out3");
_root.cont = 1;
} else if (_root._currentframe == "8") {
_root.p4.gotoAndPlay("out4");
_root.cont = 1;
} else if (_root._currentframe == "9") {
_root.p5.gotoAndPlay("out5");
_root.cont = 1;
} else if (_root._currentframe == "10") {
_root.p6.gotoAndPlay("out6");
_root.cont = 1;
}
}
Bookmarks