Hi all,
I am trying to write a code to select all of RevClouds in my drawing. I found this one to start with:
(defun c:SelectAllRevClouds (/ ss)
(if (setq ss (ssget "x"
'((0 . "LWPOLYLINE")
(410 . "Model")
(70 . 1)
(-4 . "/=")
(42 . 0)
(-4 . ">")
(90 . 4)
)
)
)
)
It partially works but not exactly what I want. Some RevClouds are skipped. Any idea how I can select all of my RevClouds ?