Mouse in feature often remains active even when the mouse is out of the designated area.
They work properly sometimes, but most of the time they do not. When hovering over the image the blue filter (hover#) and the text (text#) are supposed to appear, and then hide when not hovered over.
Screencast:
https://www.screencast.com/t/TtzYJVAIbfh
Code:
export function hover1_mouseOut(event) {
$w(‘#image6’).show();
$w(‘#hover1’).hide();
$w(‘#text35’).hide();
}
export function image6_mouseIn(event) {
$w(‘#image6’).show();
$w(‘#hover1’).show();
$w(‘#text35’).show();
}
export function image5_mouseIn1(event) {
$w(‘#image5’).show();
$w(‘#hover2’).show();
$w(‘#text36’).show();
}
export function hover2_mouseOut_1(event) {
$w(‘#image5’).show();
$w(‘#hover2’).hide();
$w(‘#text36’).hide();
}
export function image8_mouseIn(event, $w) {
$w(‘#image8’).show();
$w(‘#hover3’).show();
$w(‘#text38’).show();
}
export function hover3_mouseOut(event, $w) {
$w(‘#image8’).show();
$w(‘#hover3’).hide();
$w(‘#text38’).hide();
}