Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Try to write a simple code but it turn out that the are more and more problem keep showing up.
(while (not (equal (setq ent (entsel)) nil))
(progn
(setq dxf (entget (car ent)))
(setq start (cdr (assoc 10 dxf)))
(setq end (cdr (assoc 11 dxf)))
(command "dimaligned" start end)
(princ)
)
)
Solved! Go to Solution.