Message 1 of 21
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi
It's a simple thing. I just want to add a color to the Layer... How????
(defun c:<Test3 () (tolayer (ssget "_:L") "-I-Ansicht") (princ) ) ;_ end of defun (defun tolayer ( ss lay / i e ) (repeat (setq i (sslength ss)) (entmod (subst (cons 8 lay) (assoc 8 (entget (setq e (ssname ss (setq i (1- i)))))) (entget e) ) ) ) )
Thank you in advance...
Solved! Go to Solution.