mouse hover (in function) does not work!

Dear All,

i had seen the video regarding event handler and how making a transparent box helps to show some hidden boxes and so on (impassive way and easy to learn)
however, it did not work !!

export function showAsia_onMouseIn(event) {
	
	$w("#TravelSlides").changeSlide(0);
	$w("#testshow").show();
}

as i had add a box on a map where i called it Asia, it suppose to show in a slide show slide number 0, but it did not work so i add a blue circle and i called it “testshow”. unfortunately when mouse is over the box, both commands did not work !!
so can anyone assist me in my weak knowledge of coding !
thank you and best regards
Ahmed

Hi Ahmed,
Can you share the site so I can take a look?

Dear Tomer
please have a look at my site
https://www.ahmedalkhabouri.com/biography
i have not published the changes yet

I see that the container box “showAsia” is marked “Hidden on load” in the properties panel.
This means that it’s not visible on the page, and won’t get mouse events.
Making it visible (unchecking “Hidden on load”) will make the mouse event work again.

1 Like