I’m using a hittest to check wether my mouse is inside a movieclip or not. The code works, but with flaw. When I move my mouse from over the MC to outside the stage (without passing any empty parts on the stage) it will act as if the mouse were still inside the MC. Why is this, and how can I solve it? It’s annoying the heck out of me!
This is my simple enough code:
this.mc_viewer.onEnterFrame = animatecaption;
function animatecaption():Void {
if (this.hitTest(_xmouse, _ymouse, true)) {
trace("showsomething");
} else {
trace("hidesomething");
}
}