Message 1 of 4

Not applicable
06-28-2016
01:33 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm having some difficulties getting exactly what I want out of SSGET. Given a drawing, I want to make a selection set of all entities not on a locked layer or frozen without user input. Now, I can select all non-frozen entities with:
(ssget "x")
and I can ask the user to select unlocked entities with:
(ssget ":L")
but I can't do both. I could just get all entities with the "x" argument and filter out the locked ones with a few extra lines of code, but it seems like there should already be some selection mode string that does exactly that. Some strings can be combined. For example, "_+.:E:S" is a valid selection method. You would think that there would be a valid string like "x:L".
Solved! Go to Solution.