- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi
I have this LISP which I'm using for sequential numbering and it runs perfectly ok in AutoCAD Architecture 2016 English ... The problem is when I run it on a different language pack of AutoCAD Architecture 2016 (German and French) ... any ideas how to fix this and get it to run on other LP of ACAD
File attached
PS: Previously posted this on ACA Forum and it was recommended to post question here 🙂
(defun C:arn () (setq a (getstring T " Enter prefix if any - "))(terpri) (setq b (getreal " Starting at number - "))(terpri) (setq h(getvar "textsize")) (setq c "W") (while c (setq c (getpoint "position of number -"))(terpri) (setq d (rtos b 2 0 )) (setq st (strcat a d )) (command "_text" "_m" c h "" st ) (setq b (+ b 1)) ) )
Solved! Go to Solution.
Link copied