Anuncios

The Autodesk Community Forums has a new look. Read more about what's changed on the Community Announcements board.

save selection set in CAD

makdezines
Advocate

save selection set in CAD

makdezines
Advocate
Advocate

Hi Everyone,

 

Is there any method to select some of the elements in CAD and Name it and can be used any time during the work

as save selection

 

For Example a selection method in 3DS Max.

 

Regards

0 Me gusta
Responder
1.287 Vistas
5 Respuestas
Respuestas (5)

Valentin-WSP
Mentor
Mentor

Hello makdezines,

 

Here are a few commands in AutoCAD you may want to read: QSELECT and WBLOCK.

 

However, if it relates to 3Ds Max, I suggest you post your question on the 3Ds Max Forum.



Please select the "Accept as Solution" button if my post solves your issue or answers your question.


Emilio Valentin
0 Me gusta

ВeekeeCZ
Consultant
Consultant

Explore the GROUP command or -GROUP

The first one creates an anonymous group by default, the second offers more options, a name included.

Then when you asked for a selection, type G for a group and use your name.

0 Me gusta

jggerth
Advisor
Advisor

A little bit of LISP, for a down and dirty saving of a selection set:

at the command prompt, type

   (setq myset (ssget)), and pick the objects you want.

 

To use later in the session, type !myset when a command prompts for objects to be selected.

 

Kent1Cooper
Consultant
Consultant

@jggerth wrote:

.... (setq myset (ssget)) ....


In case it matters, be aware that setting a selection into a variable like that will work within the same editing session, but will be lost when the drawing is closed.  The GROUP approach suggested by @ВeekeeCZ will survive closing the drawing, and the Group will still be available when it is re-opened.

Kent Cooper, AIA

A_H_Ekhteraei
Explorer
Explorer
That was Great! :símbolo_del_pulgar_hacia_arriba:
0 Me gusta