[SOLVED] Weired Box background color behavior...

Hi
II want to dynamically change the background of a box. As often in programming, it was working few minutes ago, now no more :smiley:
Actually when I try the hide() function on my test loop, it works fine!

$w("#myBox").hide() ;

But when I try to change the background color on the same test loop :

$w("#myBox").style.backgroundColor = "rgba(158, 59, 27, 1)" ;

the Checkbox doesn’t change at all…
Any idea ?

Before you can change the BACKGROUNDCOLOR → you need to setup the color in the properties-panel to 100% visible!

Then your code should start work properly.

Right…
Thanks very much…