GROUP EM
Tip #1915 [ZX.LSP]
The Group command can be cumbersome and overkill. This AutoLISP macro establishes a group of objects
named Zx if, for example, you need to tie a group of objects together for repeated or later use with Move and Copy.
(defun c:zx (/x)
(setq x (ssget)
(princ)
)
Load ZX.LSP, select a set, type ZX at any Select Objects prompt. Use the set as is or add and remove objects. The grouping is destroyed when you close the drawing.
|