Meshing:

Bobin John
Member Posts: 8
**
I have created a named Selection as part of the scripting in SpaceClaim However, I want to append another surface into that same-named Selection. How can I script that? Unfortunately, when using the record button to add, it did not script for me.
Tagged:
0
Best Answer
-
Thank you. That helped.
0
Answers
-
GroupName="<YourGroupNameHere>" CurrentItems=list(Selection.CreateByGroups(GroupName).Items) NewItems = list(Selection.GetActive().Items) AllItems = CurrentItems+NewItems NamedSelection.Replace(GroupName, Selection.Create(AllItems), Selection.Empty())
1