Maybe you can do something like this? And fuss around with the zoom options a little…
let zoom1Options = …
let zoom2Options = …
function zoomInOut() {
let picture = $w(“#myImage”);
picture.hide(“zoom”,zoom1Options).then(() => {
picture.show(“zoom”,zoom2Options);
});
}
export function myImage_mouseIn(event, $w) {
zoomInOut()
}