Below is a very simple automation of the DimContinue and DimStyle commands:
Hope this helps!Code:(defun c:dimc ( / en ) (setq en (entlast)) (command "_.dimcontinue") (while (= 1 (logand 1 (getvar 'cmdactive))) (command "\\") ) (if (not (eq en (entlast))) (progn (command "_.-dimstyle" "_A") (while (setq en (entnext en)) (command en) ) (command "") ) ) (princ) )





Reply With Quote
BUT in order to restore that DIMTMOVE variable to 0, I have to click 



Bookmarks