Message 1 of 12
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi guys,
I have this ssget that works pretty good for me but now I want to filter only objects that are in the block editor. So, how can I add a filter for that without changing the existing structure of this ssget? (getvar "ctab")?
Better yet... Because I am using this with dynamic blocks with visibilitys, is it possible to filter only objects that are visible? I mean, do not include the ones that have been hide by the "bhide" command?
(setq sel (ssget "_X" '(
(-4 . "<OR")
(0 . "WIPEOUT")
(0 . "INSERT")
(-4 . "<AND")
(0 . "HATCH")(2 . "ANSI31")(62 . 2)
(-4 . "AND>")
(-4 . "OR>")
)))
Thanks!
Solved! Go to Solution.