MouseOut Dosen't Work

I have in my site many geometrical shapes and I want that every time when I hover on any of the shapes, that she will pop up and get bolder. with an hover box, it is not a very good idea because you cant cut the shape of the box and it stays a rectangle.
i tried to use the show and hide properties, and when i tried my code, when the mouse went in, the shape poped, but when i took the mouse out of the shape, the shape kept bold and didnt turned to its original shape.
My code is:

export function image9_mouseIn(event) {
$w(‘#image10’).show();
}

export function image9_mouseOut(event) {
$w(‘#image10’).hide();
}

Image 9 is the original photo and image 10 is the same photo but bolder which i placed above image 9.

Hi,
When you show image 10 you hide image 9 and the event isn’t called, the mouseOut event should refer to image10.

Good luck :slight_smile:
Or