Movie clip has button function?
Movie clip has button function?
Out of context: Reply #4
- Started
- Last post
- 6 Responses
- gabe0
try this...
onClipEvent (mouseMove) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}