how to make text to change color waen hoverd

Hi Ido,

I have the same question, and following your suggestion I have come up with the following code, but it does not work for my element #text17. One error message I get

  1. Parameter never used in relation to ‘event’ (for the first line of code)
  2. ‘Style’ undefined (for the second line of code)

export function text17_mouseIn(event, $w) {
$w(‘#text17’).style.color = “black”
}

export function text17_mouseOut(event, $w) {
$w(‘#text17’).font.color = “white”

}