Lisp needed

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!

Reply to
The-trooper
Loading thread data ...

(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 . "")) ) ) ___

Reply to
Paul Turvill

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

Sorry. ___

Reply to
Paul Turvill

Thanks Paul, works great!

Reply to
The-trooper

PolyTech Forum website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.