mov.stop();
mov2.stop();
//
mov.onRollOver = function () {
clearInterval (interval);
interval = setInterval (mcMove, 1, true, this);
}
mov.onRollOut = function () {
clearInterval (interval);
interval = setInterval (mcMove, 1, false, this);
}
mov2.onRollOver = function () {
clearInterval (interval);
interval = setInterval (mcMove, 1, true,this);
}
mov2.onRollOut = function () {
clearInterval (interval);
interval = setInterval (mcMove, 1, false, this);
}
function mcMove (forward, mc) {
if (forward) {
mc.nextFrame();
}else {
mc.prevFrame();
}
}