I am trying to make my images switch when the mouse toggles over it.
I don’t have any errors in the code but when I go to load it, I doesn’t work and I get this message: “Loading the code for the New Page page. To debug this code, open f1cb6.js in Developer Tools.”
export function image30_mouseIn(event) {
//Add your code for this event here:
$w('#image30').show();
$w('#image25').hide();
}
export function image30_mouseOut(event) {
//Add your code for this event here:
$w('#image30').hide();
$w('#image25').show();
}