MouseOver problem
Hi i want create "hover" efect in my animation, when i go mouse to one elment i want show some images. I'm trying to do it, but something is wrong. Can you look at the code?
this.nota.visible = false;
var frequency = 3;
stage.enableMouseOver(frequency);
this.footer.addEventListener("mouseover", fl_MouseOverHandler_2);
function fl_MouseOverHandler_2()
{
this.nota.visible = true;
}
