I have started using Dynamic Component from few days back. After using DC I am having a issues on Generate Report. I just want the details of selected component (selected on component option)on report but all the component appears on the report. Is there any way to avoid unwanted components from the report.
There is another method that involves a little ruby, in that the DC is simplified, in this case the hidden options are deleted, (they can be reactivated with a context menu swap if required)
If you install Aerilius Toolbar Editor, you can attach this snippet to a created button
def remove_hidden(instance)
children = instance.definition.entities.select { |e| e.respond_to?(:definition) }
children.each { |c| remove_hidden(c)
c.erase! if c.hidden? }
end
remove_hidden(Sketchup.active_model.selection.first)
# thanks to Eneroth,
As you can imagine, you can create very complex DCs, and using ruby, destroy, simplfy them to work as normal ones. Complex shapes made of many parts, made solid. operations with a path like follow me…
The option dialog can be frozen, changed, name instances…