i can't imagine putting in a gazillion if statements for all the possible numbers that could indicate if button2 was currently pressed, so i wonder if i'm missing something about this.
the query is this: ch("../null1/Masks")
i've tried other ways of querying the value in an array or dict manner but all failed...
but no way can a multiple choice button be this difficult to use....!?
multichoice buttonstrips or iconstrips are represented as bitfield use bittest() to check which bit is on it will return 1 if the bit in question is on and 0 if off (meaning if the button is on or off)
indigosm hmm. how would you use this in a gui's HIDE WHEN field ?
this doesn't appear to work :
{ bittest(cow,0) == 1 }
5 years later and i ran into the same issue. based on my readings, It seems like the field just doesn't support bittest()function.I solved it by creating one with a proxy parameter. hope it helps! (and anyone who came across this in the future)