Lisp needed

Apr 03, 2006 3 Replies

Hi everyone



Does anyone know of a lisp (lisps) that can:



- select objects that don't have color and/or linetype "by layer"



- select objects that don't have linetype scale "1.0"



Need it for IntelliCad so Acad's filter and qselect are not an option.


Thanks in advance!


(ssget "x" '((-4 . ""))) returns objects with color not BYLAYER.

(ssget "x" '((-4 . ""))) returns objects with linetypes other than BYLAYER.

(ssget "x" '((-4 . ""))) returns objects with LTSCALE not equal to 1.0.

You can do all at once with

(setq ss (ssget "x" '((-4 . "")) ) ) ___

Oops ... that should be (setq ss (ssget "x" '((-4 . "")) ) )

Sorry. ___

Thanks Paul, works great!

Join the Discussion

Have something to add? Share your thoughts — no account required.

Didn't find your answer?

Ask the community — no account required