AutoCAD 2013 :: Editing Block - Dims Text And Arrows Grow Larger When Explode Or Burst

Dec 17, 2013

I have received details that have been blocked that I need to edit. When I expode or burst them, the dims text and arrows grow larger than is required for the block and I cannot find any adjustment in the properties to bring them back to the correct size for the detail. Also the leaders lose their point and association with their text and become just a line.

Is there a command that will allow me to edit the block without loosing the current sizing and associations?

View 2 Replies


ADVERTISEMENT

AutoCad :: Burst Command - Explode Blocks Without Losing Text Content

Feb 1, 2012

is there BURST command or something similar for AutoCAD 2004 ? I need to explode blocks without losing text content

View 3 Replies View Related

AutoCad 2D :: Two Arrows On Diameter Dims

Sep 21, 2011

By some setting or default, when I dimension a diameter in Autocad 2010, I get a dim line that only has one arrow that points to one side of a circle, just like a radius. I'd like the diameter dims to have an arrow on both sides of circles.

I've been through the settings in Dimstyles. and didn't find a combination that made the desired change. I've looked at the properties for a specific diameter dimension and found nothing that worked there. I looked into block modifications using BEDIT and Properties, but I found nothing there either. While I may have overlooked a combination of changes in Properties, I tried a lot in there.

View 7 Replies View Related

AutoCAD 2013 :: Explode A Block Only

Mar 28, 2013

where I have a drawing with 3D faces creating the Chassis of a desk, and the top and pulls were inserted from other drawings and are blocks.  There are numerous drawings with this scenario and I am looking for a way to explode the blocks ONLY in the drawings without exploding the 3D faces as well.  Then we'd like to purge the drawing of the nested blocks before saving it.

I'm hoping there is a solution that doesn't require us to open each drawing individually as there are hundreds of them...if not thousands.  We didn't catch this 'mistake' until today and have created many, many product lines (started in November) with this issue.

View 5 Replies View Related

AutoCad :: Explode Block With Attribute Text Remaining As Text?

Apr 4, 2011

I'm using 2007 LT. I Would like to explode a block with the attribute text remaining as text.

View 9 Replies View Related

AutoCad 2D :: Explode Block With Attribute And Keep Text?

Sep 7, 2011

how we can explode block with attributes and keep the text of attributes as is without changing to value

View 3 Replies View Related

AutoCad :: Why Text Disappears But When Explode The Block It Is Back

Nov 15, 2012

I have created an attribute say 1 and made a circle and moved the attribute text next to the circle and now making a block including both text and circle but when the block is created the text disappears I have made sure to check the annotation on in both attribute and block creation. This is just happening in Autocad Map 3D 2012. Dont know why the text disappears but when i explode the block it is back.

View 9 Replies View Related

AutoCAD .NET :: Explode Block With Attributes / Converting Attribute To Text?

Feb 7, 2012

I wrote this little piece of code (attached) that explode all the blocks in the current drawing.This is magical, compared with what we had to do in VBA.

This works perfectly but now I want to go deeper and managed blockreferences with attributes.Based on my code, I can determine if oBTR.HasAttributeDefinitions is true or false.

If the blockreference has attributes, I suppose I will have to use Explode instead of ExplodeToOwnerSpace.

My first question is, using explode, I need before to know in which space the blockreference is inserted (Model or any layout) so to insert the exploded entities correctly. So, is it possible from a blockreference to get its own SpaceId?

An another idea I had is to edit the blockreference (not the block definition) to replace attributes with text...

View 6 Replies View Related

AutoCAD 2010 :: Explode Block Without Losing Attribute Text?

Jun 18, 2013

I am using AutoCAD 2012 (Electrical).  I have a few blocks that I pasted in a drawing with text that is contained in attributes. 

I would like to explode these blocks so that I can make some changes to them, but when I do this, I lose the text that is contained in the attributes.  After exploding the blocks, I just see the attribute names rather than the text that they originally contained.

I hate to have to re-type all this info.  If I could somehow choose to choose to convert the text originally contained in attributes to plain old static text, that would be perfect for me.

View 4 Replies View Related

AutoCAD 2013 :: How To Switch Direction Of Text Arrows

Jun 21, 2012

How to switch the direction of text arrows?I’m wondering if there is a way to switch the direction of the text arrows from being left directed to be right?

View 4 Replies View Related

AutoCAD 2013 :: Dimension Text / Arrows Not Scaling Properly?

Dec 15, 2013

When I have to scale something after bringing it in from another drawing (Windows copy, paste), usually (but strangely not always, it seems) the dimension text and arrows are all messed up.  If I scale down, they are (obviously) way too big, up, and they are microscopic.  How is this best avoided / dealt with?  I imagine it is something with the DIMSTYLE not being copied over or something?

View 5 Replies View Related

AutoCAD 2013 :: Attribute Text Larger Than Mtext

Sep 28, 2013

I have made a dynamic block with attribute text. Everything works fine except the text comes out as larger than the mtext that it was created from. The text height & the width factor are the same since i created the attribute default by copying the mtext. when i close the block the text appears longer than the mtext it was created from.

View 2 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Patchwork Quilt To Burst Block By Name?

Sep 6, 2013

It's close... when I load it, however, instead of finding the block by name, it gives me "Select objects".  As soon as I pick the block it executes the burst.  But I can do that much without a program. 

(defun c:burev (/ ss old-echo item)
  (setq old-echo (getvar "CMDECHO"))
  (setvar "CMDECHO" 0)
  (if (setq ss (ssget "_x" '((0 . "INSERT")(2 . "E-REVTABLE"))))
(defun c:bu()
(c:burst)
)
(princ)

[code]....

View 8 Replies View Related

AutoCAD Architecture :: Explode Destroys The Small Block Inside Bigger Block?

May 30, 2012

I have a block containing several parts blocks. When I explode the main block all of the parts are exploded back to lines. I have used both "explode" and "xplode" and have the same results.  How can I explode so I have my components as blocks?

View 6 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Insert A Block / Explode And Rename Nested Block With Suffix

Nov 30, 2012

I have a block that i want to insert several times and revised each one to be different to do this i would have to insert it and rename the blocks that come in and then reinsert i would like to insert and have a lisp explode the main block and rename the other 2 blocks with a suffix at the end depending on how many times its in the drawing... can this even be done? My original block name that will be first inserted is "BENT PULLEY NOTES" it needs to explode after i drop it in and then there are 2 blocks within that called "Bent Pulley" and "Bent Pulley DYN" that i was hoping to keep the names but add a number at the end depending on how many are in the drawing already...

here is a lisp that i have found... it would work if i didn't have nested blocks and only wanted the one block to be insert and not explode...

(defun c:Test (/ e i name Bname )
(setq e nil)
(command "_.-insert" "Drawing1.dwg" pause "" "" "")
(if (setq e (entlast))

[Code] .......

View 9 Replies View Related

AutoCAD 2013 :: Multileader Block Editing

May 2, 2013

I have some new multi leader definitions using blocks, however I can only edit the attribute definition text individually, where if I had the same block as a standalone with a leader I could select as many blocks as I wanted and change the text via quick properties in one quick step. Is there a way to achieve this using a block as a base for a multileader?

View 2 Replies View Related

Lightroom :: Photo Editing Software Program To Combine Burst Photos From GoPro?

Feb 18, 2013

I'm looking for a photo editing software program to combine my burst photos from my GoPro Hero 2 camera into a single photo. Will  Photoshop Lightroom allow me to accomplish this.

View 2 Replies View Related

AutoCAD 2013 :: Block Editing - Redefining Insert Point

May 1, 2013

In previous versions of AutoCad I would just double click on a block do my changes click the save changes button and then a save dialogue would come up with an option to change the insert point.  Did this option go away in 2013 AutoCAD?  I do not get this option anymore after I finish editing a block?  This is very useful.  Why would this go away?

View 6 Replies View Related

AutoCAD 2013 :: Editing Architectural Title Block - Cannot Insert Into Drawing

Mar 5, 2013

I'm trying to edit an architectural Title Block. I've went into block editor and did attribute definitions. However, when I save it I can't insert it into a drawing. Is there anything I can do to prevent this from happening?

View 2 Replies View Related

AutoCAD 2013 :: Block Editor Visibility State - Editing Old Blocks

May 28, 2012

I installed Autocad 2013 a few weeks ago and I have a lot of blocks made with earlier versions (2008, 2012, etc...) that I need to use. When I try to edit such a block, block editor gives me trouble with visibility states. I can't select visibility states, and when I can, the changes made to that state don't follow and often the program reverts back to the first visibility state for no reason. This is getting to be extremely annoying and I'm thinking of going back to 2012 because of this. Is there a patch or some way to correct this?

View 4 Replies View Related

AutoCad :: Editing Text In Title Block In 2012?

Jan 2, 2012

I been working through Ellen Finklesteins AutoCad bible (using AutoCad Architecture 2012) and in the first exercise (quick start, drawing a window) I was going ok until I had to edit the title block and no matter what I tried in AutoCad Architecture 2012 I could not find a way to edit the title block. Maybe I should have bought a book that was specific to AutoCad Architecture 2012.

View 8 Replies View Related

AutoCad :: Invisible Dims In 2013?

Jul 4, 2012

i'm trying to produce a layout using solview and soldraw in autocad 2013, but have come across a very frustrating problem, autocad lets me create the top, side and front view no problem, when i start to dimension the views the dimensions in the top and side view are fine but the dims in the front view are invisible, the command works as normal but no dims are visible, i have checked the freeze/thaw for all views but to no avail, the only other thing i can think of is that autocad has created an incorrect view and i'm dimensioning something that i simply can't see, if this is so how could i get around it.

View 9 Replies View Related

AutoCad :: Can't Explode Block

Jul 9, 2008

I'm trying to explode this block in a drawing i'm editing but autocad will not let me do this.

View 9 Replies View Related

AutoCAD 2013 :: Negative Ordinate Dims

Dec 20, 2013

Apparently we're using ordinate dimensions in a way that was not intended, but that makes perfect sense to us. We work with building elevations and sometimes, though not too often, there are points that fall below the zero elevation. But when we put an ordinate dim on these points it is noted as a positive number.

Is there some way to get these to show with a negative sign? For example,  -4'-3"

View 2 Replies View Related

AutoCAD 2013 :: Snapping To Existing Dims?

Mar 7, 2013

In earlier releases of Acad, when Dimensioning, I could bring a new dim inline with an existing dim and the with using osnap align the new dim with the existing dim.  With 2013, I can not get the osnap pick box to appear on the existing dim to be able to keep all my dims inline. 

View 4 Replies View Related

AutoCad :: Cannot Move / Explode Block?

Sep 10, 2012

The original drawing was created in Inventor but i've never had such a problem before. I've been revising a drawing and to revise, i need to move a block 50mm from its original position. It's not allowing me to do so though.

As soon as i select move...it goes into "not responding". I can't explode it either....i can explode everything in the model space and once....but this leaves all dimensions as lines arrows etc.

I've even taken the same block into the drawing....and move/exploded it without any problems. In the properties bar....they are exactly the same except for the coordinates!

The really annoying thing is....i can't even delete and replace as it keeps crashing! There aren't any constraints either.

View 9 Replies View Related

AutoCad :: Explode Any Occurrences Of Block With Particular Name?

Dec 6, 2012

This is probably very easy using ssget or something, but I don't know exactly how that works. All I need to do is to explode any occurrences of a block with a particular name.

View 7 Replies View Related

AutoCad :: Explode A Reference Block?

Jun 14, 2011

is ter any way to explode a reference block

View 4 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Burst All Blocks With Text / Attributes Inside

Apr 4, 2013

I need a lisp code to burst all "blocks with text/attributes inside" in selected area. That means user should select an area (window selection) and lisp program should be find all blocks with TEXT or ATTRIB inside in selected area and then applys "BURST express tools" command to all these blocks in the selected area by user.

View 9 Replies View Related

AutoCAD .NET :: Block Functions (Select / Explode)

Apr 15, 2012

I have a C#-WPF-Application. In this application there is a list of blocks in my drawing. When I click one of these blocks in the listbox I have several button-functions. 

One of them: Select the in the list selected block in the drawing.

Another: Explode the in the list selected block.

I found several topics with Selection, but none of them worked for me. I'm looking for a selection via ObjectId or blockname of a single block, in the most cases the selectionfilter needs an array(?). 

View 9 Replies View Related

AutoCAD .NET :: How To Get Collection Object After Explode A Block

May 16, 2012

I would like explode a block which still maintain all sub blocks' XDatamyBlockRef.ExplodeToOwnerSpace()  The above code does the job. However I can not get the exploded collection

Use the following code I can get object collection but there is no XData for each sub block.

Dim colAssemblyEnt As DBObjectCollection = New DBObjectCollection() myBlockRef.Explode(colAssemblyEnt)
 
My question is how can I get the sub block collection with each block's XData?

View 5 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved