this is the script i have happening on a frame. i have 2 other clips that run next to it - conveyor belt styleee.
function moveClip3() {
if (myClip3_mc._x < 1200) {
myClip3_mc._x += 0.5; // move the clip 1 px to the right
} else {
myClip3_mc._x = -150;
}
}
myInterval = setInterval(moveClip3, 5);
this works well. it goes to where i want then returns to an x value and the whole thing starts again. great. i know want to add button funtionality in that when i put my mouse over any of the clips all the clips stop moving. when i remove the mouse from the clip then all start moving again. this should happen regardless of what clip i rollover.
any takers for this one. i have looked all ove the place but cannot this type of functionality