ok so i have this
LINK1 (bp_frame)
LINK2 (ww_frame)
LINK3
LINK4
on link1 i have this
on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “bp_frame”;
container.loadMovie(“bp_frame.swf”);
} else if (_root.currMovie != “bp_frame”) {
if (container._currentframe >= container.midframe) {
_root.currMovie = “bp_frame”;
container.play();
}
}
}
as i have this on LINK2
on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “ww_frame”;
container.loadMovie(“ww_frame.swf”);
} else if (_root.currMovie != “ww_frame”) {
if (container._currentframe >= container.midframe) {
_root.currMovie = “ww_frame”;
container.play();
}
}
}
so everything works well to be honest… i followed the tutorial from kirupa
BUT heres the thing
i now made my movies about 150frames long.
and i click on LINK1… the mid frame is at 130.
It will not load LINK2 untill it gets to the mid frame of 130.
How and what do i set up, so it goes straight to the midframe>>exit.
last frame (exit)… is this
_root.container.loadMovie(_root.currMovie+".swf");
Thanks.