Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have a lisp that will add a background mask to mtext and sets the color to 250.
I need to the lisp to set the color to the background color, like if I were to manually do it and select "use drawing backround color".
Thanks for the help!
DSM_Dude
(defun c:mblank ( / js n dxf_ent) (setq js (ssget '((0 . "MTEXT")))) (cond (js (repeat (setq n (sslength js)) (setq dxf_ent (entget (ssname js (setq n (1- n))))) (entmod (append dxf_ent '((90 . 1) (63 . 250) (45 . 1.1) (441 . 0)))) ) ) ) )
Solved! Go to Solution.