Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have text object and block attribute, how select text and match value to attribute block quickly ? Tks all.
Solved! Go to Solution.
I have text object and block attribute, how select text and match value to attribute block quickly ? Tks all.
Solved! Go to Solution.
(defun c:Text2Att ( / x a)
(and (setq x (car (entsel "Text: " )))
(setq a (car (entsel "Att: ")))
(setpropertyvalue (entnext a) "TextString" (strcat "+" (getpropertyvalue x "TextString"))))
(princ)
)