In the process to test out your lisp and modify it to work for me, I tried to set my titleblock back up w/ attributes and start testing it. For whatever reason, it is no longer prompting me to input the fields when I insert the block now. This is bad because I can't try your script, but this is good, because I should be able to use attedit to change the value of the attributes now.
Problem: I can't get attedit to input the value. In my lisp I:
Code:
(Setq
n6text (getstring T "\nEnter Description Line 1: ")
)
to set the variable
Code:
(princ "\nDescription 1 is ")
(princ n6text)
to show that it was set (will be removed once finished)
Code:
(Setq
n0 (list 0.0 0.0)
n6 (list 14.25267415 0.58959989)
A2 (* (- (Car n6) (Car n0)) dwgscl)
A3 (* (- (Cadr n6) (Cadr n0)) dwgscl)
n6 (list (+ (Car n0) A2) (+ (Cadr n0) A3))
)
to set the location
and
Code:
(Command "attedit" "y" "" "" "" n6 "" "v" "r" n6text "" )
to edit the attribute.
The problem is that it doesn't assign anything to the value when I do that. Will it not read the variable for some reason? Any other ideas? Am I just an idiot?