For values (number values) I know I can use the set() function. What about a property in particular?
(EXAMPLE: Directly change the "visible" property)
if (value === 0) {
// set the "visible" property [of another_widget] to FALSE
}
else if (value === 1) {
// set the "visible" property [of another_widget] to TRUE
}
or...
(EXAMPLE: Indirectly change the property, using number values/conditionals)
if (value === 0) {
// set the "visibile" property of 'this' (panel) widget to FALSE
}
if (value === 1) {
// set the "visibile" property of 'this' (panel) widget to TRUE
}
Thank you!