Uncheck all checkboxes in a column

I use the same outliner as a packing list but would love to be able to uncheck all of the checkboxes a particular column. Then I can re-use the list and tick what I have packed this time around.

There’s an example OmniAutomation script for unchecking all the checkboxes: https://omni-automation.com/tutorial/oo-ios/editor-02.html

checkColumn = document.outline.statusColumn
stateValue = State.Unchecked
nodes = document.editors[0].rootNode.children
nodes.forEach(
	function(node){
		node.setValueForColumn(stateValue,checkColumn)
	}
)
1 Like

Thanks. I need to start thinking about this from almost ground zero, and changing the checkboxes in a specific column rather than by the row. But it has given me a start.