Thanks for reaching out! Retool properties like disabledByIndex are read only; unless there is a setValue property, you can't set the value in a script. tabsComponentName.disabledByIndex = [false, true, false]; will not work. but you can make the disabled property dynamic like this:
Create a variable that will track your array of booleans for disabled:
Tess. Thank You - particularly for the great detail with screenshots.
I am new to "low-code" frameworks so too ready to jump in to try coding and falling foul of the "missing" setValue method. Dynamic values are a more transparent solution for readers of an App's design too.