Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

mouseover a movieclip to make it play?

Status
Not open for further replies.

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!
 
Attach this to the clip you want to control:

onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
play();
}
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top