Anuncios

The Autodesk Community Forums has a new look. Read more about what's changed on the Community Announcements board.

Blocks library

Anonymous

Blocks library

Anonymous
No aplicable

Hi

 

When I open a drawing & draw items & then add them to the blocks libray they are only available the drawing Ive opened, when I open another drawing the blocks I drew & added are not in the second drawing. How do I have the blocks library common to all drawings

 

Thanks

 

Tess

0 Me gusta
Responder
Soluciones aceptadas (2)
2.287 Vistas
3 Respuestas
Respuestas (3)

Patchy
Mentor
Mentor
Solución aceptada

WBLOCK instead of BLOCK ; or go to ADCENTER and grab them.

Kent1Cooper
Consultant
Consultant
Solución aceptada

WBLOCK

 

Put the resulting drawing file in some location that's in your Support File Search Path list in Options to make it easily available in other drawings, i.e. you can just give its name in the Insert command, and AutoCAD will find it.  You can also put it somewhere else and Browse for it in Insert.

 

If you have already defined a Block in the current drawing, and want it to be available in other drawings, WBLOCK has an option to just take an existing Block definition and make a separate drawing file out of it.  But you can also make a separate drawing file out of objects directly, similar to defining a regular Block but without making them into a Block definition in the current drawing first.

 

EDIT:  And as Patchy said, you can always use ADCENTER [or its alias ADC] to get a Block [or Layer, or Text Style, or...] from inside any other drawing.  It does take more navigating to get there than Inserting a drawing made with WBLOCK in a directly-accessible location, but it can make sense as a way of categorizing things.  You could have all of a category of items as Blocks in one appropriately named drawing rather than as separate drawings in a similarly named folder.  And you can build commands or menu items that will do the navigating for you for common categories.  For instance, I have front elevations of all manner of kitchen cabinets and related pieces for interior elevations, as Blocks in a drawing called KITCHCAB, and I have a command called KC [only coincidentally the same as my initials] that opens up the ADC already in that drawing's Blocks list:

 

;; KitchCab.lsp [command name: KC]
;; to bring up Design Center with list of Blocks in KITCHCAB.dwg
(defun C:KC ()
  (command "adcenter" "adcnavigate" "K:cara_asombrada:My/File/Path/KITCHCAB.dwg/Blocks")
); end defun

Kent Cooper, AIA

Anonymous
No aplicable

Thanks for the reply KC & Patchy

0 Me gusta