Leader/Dimension variable
Just a small hassle we're having with the leaders and dimensions.We want the 'dimtad' variable for the leaders to be 0 so that the text is beside the end of the leader but we want the variable for the dimensions to be 1 so the text is above.In intellicad we wrote the following lisp but it doesn't work in bricscad. Anyone got any ideas or anythinbg they've written for this...
(defun c:ldr () (setq oldhigh (getvar "dimtad")) (setvar "dimtad" 0) (command "leader") (setvar "dimtad" oldhigh) (princ) )
0