got three movie clips. each one plays to frame 5 onrollover.
what i want to happen is if mc1 is already at frame 5, and i rollover mc2.
in theory mc1 will play to frame10 before mc 2 starts playing.
what i have got are buttons on the first frame of each mc. these activate the playing to the stopaction on frame5. also they have this piece of code to asses the position of the other mc’s.
and further play the outro, to frame 10.
this seems to be not working instead it will just play all mc’s??
heres the scripting
on (rollOver) {
play();
}
on (rollOver) {
_parent.mc1.play();
if (mc1_framesloaded(5)) {
;
}
}