Hi,
I’m wondering if there’s any way to set multiple widgets identifier-value with one line?
Right now I’m doing this, which works fine.
cabbageSet 1, "PitchGainDot", sprintfk("visible(%d) ", 0)
cabbageSet 1, "PitchGainLine", sprintfk("visible(%d) ", 0)
cabbageSet 1, "PitchGainBgr", sprintfk("visible(%d) ", 0)
But if I have a ton of widgets, then it would make the code alot cleaner to set the visible() identifier to 0 for all these widgets with a single line. Is this possible?.. maybe with arrays?