Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
I downloaded an AutoLisp which can change the height of all my attributes, (pasted below), it works well. Would anyone know how to edit this AutoLisp so that it can change the Justification of all my attributes? I am constantly going into blocks supplied by our manufactures to change them to Bottom Center.
Thank you,
;;;Attribute height change
(defun c:ahc ()
(setq atth(getreal "\nEnter new attribute height: "))
(command "attedit" "y" "*" "*" "*" "c" pause pause)
(while
(= 1 (logand (getvar "cmdactive") 1))
(command "h" atth "n")
);;; end while
);;; end lisp
Solved! Go to Solution.