I created a “delete all unused views” tool a while back and it works great. I would like to take it a step further and delete any views that don’t have a reference symbol or plane. I ultimately want to delete everything I can without losing anything that was modeled. I could really use some direction from the Dynamo community.
Yeah, we a looking at options for our firm. I have made a “delete all sheets” and “delete unused views”. In Dynamo, is it possible to combine these two tools to perform the tasks I want?
You can use the transaction nodes or a wait node (Springs, BattleBIM, and other packages have these). Transaction nodes are out of the box but split your graph into two functions. I prefer wait nodes.
You can even create your own wait node.
Dynamo nodes are executed in their connected order (eg. a node will not run until all its inputs have been run.) So the way to force one node (or group of nodes) to run after another is to make the second node depend on an input from the first node.
Even something as simple as combining the first output with the second input will make sure that your second set of nodes runs after the first set is complete.
Sweet! I think I got it to work. So I installed the Springs package and it didn’t appear to have the wait node. I did find “Passthrough” in the Clockwork package and that seemed to work BUT I got warnings when I ran the tool.