Hey there, I’ve got a movie clip that has a line of mc’s each one expands elastically when the mouse comes near it . Now what I"m trying to do is apply a hitTest to it, so it rolls out and back in when I roll over a button. When I put everything in a mc and on the stage and apply the following script the tween gets stuck on the way back in. Anybody know what might be going on wrong here?
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.nextFrame();
} else {
this.prevFrame();
}
}
here’s the fla