Question
How to do a indeterminate checkbox with script UI
there are actually three states a checkbox can be in: checked, unchecked, or indeterminate. but the value only show true or false

w = new Window ("dialog");
e = w.add ("checkbox", undefined, "test");
e.indeterminate = true;
w.show();
