ScriptSpot

Forum topic · Scripts Wanted

Deleting or adding an object from/to instanced groups

By hanselmoniz · 2012-01-17

Description

I have created group of many objects and have copied the group several times to make instances....

I want a script to do the following
if i have selected a certain object from the first group
once i run the script
it should open all the groups
and should pick the same objects in the other group

Comments (1)

Selection of instanced objects between groups

LittleLordPotala · 2012-01-22


obj = $
max create mode
sel = for i in geometry where areNodesInstances obj i collect
(
   if isGroupMember i do if isOpenGroupMember i == false do 
   (select i; max group open)
   i
)
select sel