Multistaate boxes

I think Andrew’s version is a lot easier but if you have knowledge with coding, you can use this code and change #multiStateBox1 to match your multistate box ID and “box2” for the state you want :

$w("#multiStateBox1").onMouseIn( (event) => {
  $w('#multiStateBox1').changeState("box2")
} );

If you want it to change back on hover out, you can then add this code again changing the #multiStateBox1 and “box1” to match your code:

$w("#multiStateBox1").onMouseOut( (event) => {
    $w('#multiStateBox1').changeState("box3")
} );

I made a quick video for it below and here’s the link to the API documentation:

For further questions, the Velo forum might be a better resource on coding though. https://www.wix.com/velo/forum