onMouseIn and onMouseOut not working

export function gelatoBox_onMouseIn(event) {
    $w("#gelatoText").show();
}
export function gelatoBox_onMouseOut(event) {
    $w("#gelatoText").hide();
}
export function pizzaBox_onMouseIn(event) {
    $w("#pizzaText").show();
}
export function pizzaBox_onMouseOut(event) {
    $w("#pizzaText").hide();
} 

In editor mode

Check that these event listeners are set on the property panel of these elements

They are