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......
1 answer
-
Hello,
To explode a block:
menu Modification / Explode
or in the command line (AutoCAD French)
DECOMPOS
or in the command line (all versions)
_EXPLODE
If the block is nested within another block, repeat the operation as many times as necessary.
See you later!-
Hello Yoda, and thank you for replying! But I've tried the decompose command several times and it keeps showing me "1 could not be decomposed." I really don't understand why this is happening to me?? Knowing that this file I copied from a CD (I don't know if that has anything to do with it?) In any case, for now I have to work in the text editor to make changes and frankly, it's not practical! So if you have another solution, let me know, thanks!!
-
I found this solution on the net
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+. -
-