Explode a block in AutoCAD
Solved
archi
-
archi -
archi -
Hello,
I would like to know how to explode a block in AutoCAD, because I tried using the explode command but it doesn't work, I don't understand why?? Please enlighten me, it's urgent......
I would like to know how to explode a block in AutoCAD, because I tried using the explode command but it doesn't work, I don't understand why?? Please enlighten me, it's urgent......
http://cadxp.com/index.php?/topic/14600-re-bloc-non-decomposable/
I copied the lines of lisp, I think you need to replace "Nom_bloc" with the name of the block you want to explode, do you know a bit about lisp? I don't know if it works with an AutoCAD LT version.
(vla-put-explodable
(vla-item (vla-get-Blocks
(vla-get-ActiveDocument (vlax-get-acad-object))
)
"Nom_bloc"
)
:vlax-true
)
Edit:
Also check this address if it can help you
http://www.freelancearchitecture.fr/autocad/autocad-decomposer-un-bloc-non-decomposable/
See you+.