Hi,
I’m wondering if anyone can help me with a problem I have. I need a script that will detect if there is any mouse movement on the flash page and then pop up an interface. As soon as the mouse leaves the flash image, then remove the interface.
So far I have this script:
[font=Fixedsys]onClipEvent (mouseMove) {
if (_root.button, hitTest(_root.menu)) {
} else {
_root.menu.play();
}
}[/font]
[font=Fixedsys][/font]
But I can’t figure out a good way of removing the interface once the mouse leaves the flash image. If you could help, that’d be appreciated!
Thanks!
–Matt
PS: I’ve included a sample zip if you want to see what I’m doing more closely.