Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/22/2019 in all areas

  1. Glad to help, although you really should be thanking Lee since his code is the 'magic sauce' that even makes it possible.
    1 point
  2. You're welcome. @ronjonp Yeah, you are right and I am honestly aware of that but the OP asks for something very simple faraway enough from the DXF group 3. Brave fox by the way.
    1 point
  3. @Tharwat FWIW, I'd use vla-put-textstring. Large mtext strings are broken up into multiple 3 codes so entmodding 1 is unreliable.
    1 point
  4. No its not. (defun c:replace1 (/ text sel int) (setq text "this is a description text") (if (setq sel (ssget "_:L" '((0 . "MTEXT,TEXT")))) (repeat (setq int (sslength sel)) (entmod (append (entget (ssname sel (setq int (1- int)))) (list (cons 1 text)) ) ) ) ) (princ) )
    1 point
×
×
  • Create New...