Sep 4, 2002 #1 fowlerlfc MIS Joined Mar 20, 2002 Messages 136 Location 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 Joined Jul 23, 2001 Messages 1,906 Location 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(); } }