[Search tip detail and code files using keywords, tip number, author name, etc ]
 
Streamline the AttSync Command
Tip# 3983 By Leonid Nemirovsky On 24-Sep-2012
0
Rated By 0 users
Categories : Attributed Blocks
Software type : AutoCAD 2013
Rename File To : No Files to download.
Reset blocks, with their attributes, to their original configuration.

Frequent tipster Leonid Nemirovsky shares a tip that will help you reset your altered attributed blocks in AutoCAD.

“I slightly modified the AttSync command. I needed to synchronize a bunch of attributed blocks, so I automated the AttSync command as a very primitive macro/LISP:

(defun c:ats ()

(command "attsync" "s" pause "y")

(princ)

)

“This tip is very simple indeed, but it can save a lot of time.”

Notes from Cadalyst Tip Reviewer Brian Benton: The AttSync command will reset blocks with attributes to their original configuration. If you have an attributed block and you change the position, size, justification, or any other setting of one or more of the attributes, this command will reset your changes back to the original block settings.

 

Average Rating:
0


User comments