
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am trying to rebuild some exploded mleaders and I have it mostly done but I would like to be able to pick the text from the broken circle mleader and use it for the text for the new mleader without having the edit attribute window come up. Also sometime the new leader doesn't get placed in the right place. Can someone help me out with this.
thanx
(defun c:c22 (/ lead)
(princ "Select exploded circle multileader peices to delete.")
(setvar 'osmode 247)
(setq lead (ssget))
(setq pt1 (getpoint "\nSpecify leader arrowhead location: "))
(setq pt2 (getpoint "\nSpecify center of bubble location: "))
(command "_.erase" lead "")
(setvar 'osmode 0)
(command "_.mleader" pt1 pt2 "")
(setvar 'osmode 247)
(princ)
)
Solved! Go to Solution.