[Search tip detail and code files using keywords, tip number, author name, etc ]
 
    For tip to function correctly, you must ensure that the downloaded file name matches the file name
    displayed in the Rename File To field. Please rename downloaded files when necessary.
Group 'em
Tip# 1915 By Leonid Nemirovsky On 01-Dec-2003
2
Rated By 1 users Downloaded : 197
Categories : 2D Operations
Software type : AutoCAD
Rename File To : Tip1915: ZX.LSP
ZX.LSP creates a temporary group of objects for use later or with the Move and Copy commands.

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.

 

 

Average Rating:
2


User comments