hi,
i try this but i canot find how to close the lightbox on mouseOut
import wixWindow from ‘wix-window’;
export function buttonPrinter_mouseIn(event, $w) {
wixWindow.openLightbox(“PrinterBox”)//Add your code for this event here:
}
export function buttonPrinter_mouseOut(event, $w) {
//Add your code for this event here:
}
export function PrinterBox_mouseIn(event, $w) {
wixWindow.openLightbox(“PrinterBox”)//Add your code for this event here:
}
export function PrinterBox_mouseOut(event, $w) {
wixWindow.lightbox.close() // not work :
}