Flash mouse position
Flash mouse position
Out of context: Reply #9
- Started
- Last post
- 10 Responses
- mac100
put this on a MC
onClipEvent (enterFrame) {
x = _root._xmouse;
y = _root._ymouse;
if (this.hitTest(x, y, true)) {
yourMC.gotoAndPlay(1);
}
}hope this helps
mac-10