Sep 4, 2002 #1 fowlerlfc MIS Mar 20, 2002 136 US Does anyone know of a good tutorial on how to set a mouseover to make a movieclip play? I want to do this without using a button!
Does anyone know of a good tutorial on how to set a mouseover to make a movieclip play? I want to do this without using a button!
Sep 4, 2002 #2 wangbar Programmer Jul 23, 2001 1,906 GB Attach this to the clip you want to control: onClipEvent (enterFrame) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { play(); } } Upvote 0 Downvote
Attach this to the clip you want to control: onClipEvent (enterFrame) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { play(); } }