Hi,
I am trying something like this:
(setq ed (entget (car (entsel))))
(setq lyr (cdr (assoc 8 ed)))
(setq clr (cdr (assoc 62 ed)))
How can I get a selection set based on layer and color of a given object?
Something like:
(setq objs (ssget "X" '((cons 8 lyr) (cons 62 clr)) ) )
[i know this is not working I write it just to give the idea.]
and then change the objects' layer to "0" and color to 2.
Thank you in advance
tso