Page 1 of 1
ssget to select blocks with attributes
Posted: Fri Feb 03, 2023 5:45 pm
by caddhelp
filter 66 doesn't work for some reason.
(command "ERASE"(ssget "x" '((0 . "INSERT")(66 . 1))) "")
is it a bug?
Re: ssget to select blocks with attributes
Posted: Tue Mar 12, 2024 8:28 pm
by QuanNguyen
Hi,
well, it didn't work for unknown reasons.
Try this to filter blocks with attributes:
(command "ERASE" (ssget "x" (list '(-4 . "<AND") '(0 . "INSERT") '(66 . 1) '(-4 . "AND>") )) "")
Re: ssget to select blocks with attributes
Posted: Sat Mar 30, 2024 8:15 am
by rob.7913
Did that work? Curious...I will be using that on the regular if it does.