Anuncios

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

makdezines
1290 Vistas, 5 Respuestas

save selection set in CAD

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

Valentin-WSP
en respuesta a: makdezines

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
ВeekeeCZ
en respuesta a: makdezines

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.

jggerth
en respuesta a: makdezines

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
en respuesta a: jggerth


@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
en respuesta a: jggerth

That was Great! :símbolo_del_pulgar_hacia_arriba: