how to make text to change color waen hoverd

Hi Avrumi,

You can achieve that using a button and mouseIn & mouseOut events.
See the code sample below

export function button1_mouseIn(event, $w) {
    $w('#button1').style.color = "black"
    $w('#button1').style.backgroundColor = "white"
}

export function button1_mouseOut(event, $w) {
    $w('#button1').style.color = "white"
    $w('#button1').style.backgroundColor = "black"
}