Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
The code below selects the object with handle 5b6.
I need to make a selection set with multiple handles. Is that possible?
E.g. select the handle "5b6"and "132" at once.
Thanks in advance
(defun C:5b6-handle ( / handle
ent )
;(setq handle (getstring "\nHandle to search for: "))
(setq handle "5b6")
(setq ent (handent handle))
(if ent
(sssetfirst
nil (ssadd ent))
;Else
(princ "\nNo such handle
found.")
)
(princ)
)
Solved! Go to Solution.