Tooltip on text box/vector

I’m trying to add an image tooltip to a text box, is it possible?
I made the code and it doesn’t works
is something wrong here?
pls, help!
Hila

export function text2_mouseIn(event) {
 // This function was added from the Properties & Events panel. To learn more, visit http://wix.to/UcBnC-4
 // Add your code for this event here: 
}$w('#imagesavta').show();

export function text2_mouseOut(event) {
 // This function was added from the Properties & Events panel. To learn more, visit http://wix.to/UcBnC-4
 // Add your code for this event here: 
}$w('#imagesavta').hide();

So you are trying to hide or add a tooltip??

export function text2_mouseIn(event) {
$w('#imagesavta').show();
}

export function text2_mouseOut(event) {
$w('#imagesavta').hide();
}

Or just hide and show?
Move the code INSIDE the function!

Put it outside means the show hide is not in an event…

Thanks it worked!! I moved it inside the function. still learning :slight_smile: