Effect Mouse In&Out doesn't work smoothly

Hi, I tried to make a mega menu using Mouse In & Out effects. It works perfectly, but then whenever I edit the container (just text) the effects got the glitch.

  • The menu shows when mouse in the button
  • The menu shows when mouse in the container box, but when I move the cursor (still in side the container), it disappears.

I have checked the code and there is nothing missing. Any one could help?

export function ProductsButton_mouseIn(event) {
$w('#ProductsMenu').show();
}
export function ProductsButton_mouseOut(event) {
$w('#ProductsMenu').hide();
}
export function ProductsMenu_mouseIn(event) {
$w('#ProductsMenu').show();
}
export function ProductsMenu_mouseOut(event) {
    $w('#ProductsMenu').hide();