Box Sop dodivs parameter

I want to toggle the (Divisions) dodivs checkbox inside the BoxSOP (with a chop value from somewhere else in the network). When I click the plus sign to show the parameters, only divs[xyz] show a parameter where I could place a reference, no dodivs.

Is there another method for sending a reference to a BoxSOP dodivs parameter without having an input field?

Thanks

I don’t know if you can get an export there… you can change it with python though:

op( 'box1' ).par.dodivs = True

You might have to use a CHOP execute to get that one to work right.

Right, seems to be a limitation in exporting to ‘dodivs’. We’ve logged the error.

Alternatively, you could create 2 box SOPs, one in each state, and use a Switch SOP to select between them.

You could then export to the Switch SOP input parameter.

Cheers.

Sorry about that limitation. You can export to another parameter, then in the CHOP’s docked DAT table, change the parameter column to ‘dodivs’.

Or put an expression in there blindly: op(‘box1’).par.dodivs.expr = “op(‘mychop1’)[0]”

(I actually tried manually changing the export table to ‘dodivs’ without any luck unfortunately).
-Rob