Message 1 of 4
Explode blocks!

Not applicable
12-21-2020
12:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
(defun C:delbl ()
(setq a (ssget '((0 . "INSERT"))))
(command "_.explode" a "")
(princ)
)
----------------
I am trying to explode the blocks in my drawing, but after selecting the blocks, it exploded only one objects
for example, " delbl" found 4 blocks(objects) but exploded only one, and the remaining blocks I have to continue to "delbl" and one block exploded again......Anybody can tell me the reason why?
I still can use cad command "explode" to explode them by manual. They can be exploded!