Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
If I use:
(command "erase" (ssget) "")
all objects I select are erased.
However, if I change it to:
(command "explode" (ssget) "")
only the LAST object that was selected is exploded.
What is going on here? Why is it not exploding all items selected?
Edit: The object type I am testing this on are closed polylines.
Obviously I plan on adding more to this, but here is the "full" code which is not exploding all selected objects (only the last object selected):
(defun c:xc() (command "explode" (ssget) "") )
Solved! Go to Solution.