Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I tried to write me a small Lisp to select every Text with the same Rotation as the one I select with entsel.
But somehow i cant get it to work.. any advice?
(defun c:selectRtTxt ()
(setq rt (assoc 50 (entget (car (entsel)))))
(setq txt (ssget "_X" '((0 . "TEXT,MTEXT") (rt))))
(sssetfirst nil txt)
)
Solved! Go to Solution.