AutoCad :: Unclickable Text Objects?

Apr 17, 2012

I recently began working for a landscape architect who doesn't know very much about using AutoCAD, and hired someone to create his page templates, line standards, etc.

Recently, we have encountered a new problem with page templates in which there are a couple unclickable text blocks within the title block template - it is as if these items don't really exist.

Info I am aware of:Each item within the template is on the same layer, but only a couple items behave this way.

The template is not comprised of dynamic blocks - just text

View 9 Replies


ADVERTISEMENT

Revit :: Adding Foundation Slabs To Walls - Everything Unclickable

Nov 6, 2011

I'm new to Revit. For instance I was working on adding foundation slabs to my walls .. all walls were done and had slabs beneath them and one wall still didn't have any. Once I tried to add the slab to that particular wall ( just by clicking on it, like ive done with every other wall ) it fails to do so and doesn't add any slab.
 
But my main problem is, sometimes when I work on my project everything becomes UNCLICKABLE, I do not know what im doing wrong and the only way for me to add walls or anything is by clicking CTRL+Z untill the meny gets highlighted again.

Ive put a screenshot in the folder.

View 1 Replies View Related

AutoCAD VB :: Converting AttributeDefinition Objects To Text Objects On Same Layer

May 9, 2013

I have several .dwg files that I use as templates. I run find and replace VBA routines on the template .dwg files, ie find $Flavor$ and replace it with "Grape", and then I save the .dwg to another directory with a new name. 

These VBA routines work well for acdbText and acdbMText objects, but I have a bunch of AcdbAttributeDefinition objects in the .dwg templates as well.

After much research about the AutoCAD object model (I'm mostly a Microsoft Access VBA programmer), I have come to understand that these AcdbAttributeDefinition objects are actually "remnants" of a block that no longer exists in the drawing.

Anyway, I'd like to convert all of these orphaned AcdbAttributeDefinition objects to acdbText objects in the templates and then delete the AcdbAttributeDefinition objects. I have some code that does just that.

However, the issue that I am having with the code is that the newly created acdbText objects are not on the same layer that the original AcdbAttributeDefinition objects were on. I don't know the syntax to identify what layer the AcdbAttributeDefinition object is on or how to specify what layer on which the acdbText object is created.

how to keep the acdbText objects on the same layers as the original AcdbAttributeDefinition objects during the conversion and deletion process?

Here is the code I am using currently:

Sub AttConvert(dwg as string)Dim oDocument as AcadDocumentDim ent as AcadEntityDim aa as objectset oDocument = Documents.open(dwg) For Each ent In oDocument.ModelSpace If ent.ObjectName = "AcDbAttributeDefinition" Then' DO SOMETHING TO IDENTIFY WHAT LAYER THE ACDBATTRIBUTEDEFINITION OBJECT IS ON
' DO SOMETHING TO SPECIFY THAT THAT IS THE LAYER TO CREATE THE ACDBTEXT OBJECT ON Set aa = ThisDrawing.ModelSpace.AddText(ent.TagString, ent.InsertionPoint, ent.Height) End If Next ent For Each ent In ThisDrawing.ModelSpace If ent.ObjectName = "AcDbAttributeDefinition" Then ent.Delete End If Next ent End Sub

View 1 Replies View Related

AutoCad :: Convert Multiple Single Text Objects Into Multiple Mtext Objects

Jul 3, 2013

I have long used the following lisp to convert multiple single text objects into multiple mtext objects (i.e. make each text entity into separate mtext entities).

; T2M - convert individual Texts/Dtexts to individual MTexts
; modified by Xanadu - www.xanadu.cz
;
(defun C:T2M (/ ss i elist)

[Code]....

However, the mtext entity always moves position slightly (compared to the original text entity) after converting the object. better lisp that converts multiple text entities into mtext entities (which are all separate still, i.e. not joined together) without the position of the entity changing?

View 4 Replies View Related

AutoCad :: How To See All Lines / Objects / Text

Nov 27, 2013

How can i see all lines, objects, text, etc in my monitor?

Now i can only see for an example an solid i've created now and not the everything that is under.

I've thousands off items under.

View 7 Replies View Related

AutoCAD VB :: Phantom Text Objects In DWG File?

Feb 9, 2012

I am attempting to use VBA in Acad 2007 to renumber a series of text objects based on their relative positions.  (The text is numerals only.)   The programs works well at first, but if I erase some of the text objects, it crashes.  I noticed that if I start with 20 text objects in the drawing, and then erase 1, AutoCad reports 19 objects selected while ssetObj.Count is still equal to 20. Apparently the erased objects are still being returned by ssetObj.SelectOnScreen.  To make sure I ran the example from a new drawing with only the text objects.

View 5 Replies View Related

AutoCAD Map 3D :: Export DWG Text Objects To SDF But How To Label Them

Sep 18, 2012

Map 2012

How do I add text labels to points?

I'm exporting DWG objects to a SDF file. Once connected to the SDF file, text items are displayed as points as expected. I have ensured the STRING attribute is present in the conversion and I can see these values in the Properties pallete.

I want to label the points using the Style Editor but try as I might no text label appears. I've checked the obvious stuff like ensuring I'm not using black text on a black background and the text is not so small that I cannot see it.

I can label lines so I know I can do it!

View 4 Replies View Related

AutoCad :: Text Objects Moving To Different Locations

May 17, 2011

I just upgraded from ACAD 2007 3d to 2012 3d. The rest of my organization is using a "mix" of older versions, so we still save to the 2004 format. Text objects "moving" to different locations or disappearing on opening files in newer versions of ACAD? I've had two instances so far. In one case, a 2012 LT user added a leader/text and the 2000 LT user could see it. The text was clearly there in the 2012 users file. In the other case, I opened a file I worked on in 2007 and text objects seem to be moved about randomly when looking at it in 2012. Everything still looks good with the file opened in the 2007 though.

View 4 Replies View Related

AutoCad 2D :: Command To Mask Objects Behind Text?

Jun 18, 2013

I can't remember the command that created a polygon, where you could item sections of lines so that they didn't visually conflict with other lines or text that you want to highlight. Then you could also make the box itself not show.

View 8 Replies View Related

AutoCad :: Aligning Centres Of Text And Objects?

Sep 10, 2012

software like indesign and coreldraw allow you to align centres of texts and objects.

for example if i have written the word bedroom and a rectangle of 3000 by 4500 is therem, i can select the text and the rectangle. press the aign to centre button and these two things will align their centres. how can i do that in autocad?

View 2 Replies View Related

AutoCad 2D :: Aligning Multiple Text Objects

Oct 2, 2012

If you can use the ALIGN command to align multiple text objects in the Y-Axis? (or X-Axis as well)

I know about changing the X value of a bunch of text objects to align them that way. I'm just wondering if the ALIGN command will allow you to do something similar?

I want to do this without lisp too. If there are other methods I'm always wanting to learn! I just had a new cad user ask me about the ALIGN command and I couldn't get it to do it.

View 3 Replies View Related

AutoCAD 2010 :: Text Color In Pasted OLE Objects

Jan 31, 2013

One of our standard practices is to copy/ paste schedules from EXCEL into CAD. The OLE objects paste with the text color set to whatever was set up in EXCEL. But for one user , his text always changes to blue in the copy paste process. We cannot figure out how to change it to match everyone elses. Is this a CAD setting or EXCEL setting.

View 4 Replies View Related

AutoCad :: Text Made Of Objects (Lines And Arcs)

Sep 6, 2012

I am looking for a way to use objects created from lines and arcs as text because of a machine that will not read text. The objects look like letters and numbers. I am wondering if there is a way to create a text style, library or whatever with the created "text". There can be hundreds of characters on a single drawing so importing and aligning and placing each object 1 at a time is very slow and painstaking.

View 9 Replies View Related

AutoCad :: Text Editing With Multiple Objects Selected?

Dec 22, 2011

I was wondering if there is a way to edit single line text when there are multiple objects selected. I have multiple text which need their justification edited but there are non-text items amongst them. Instead of clicking on each of them I would like to just select the area and then edit the text as required.

View 3 Replies View Related

AutoCAD Civil 3D :: Vba - Label Component - Reference Text Objects?

May 17, 2012

How to reach Reference Text Object in Vba?

We can add Reference Text in Label Components. it can be referenced to Alignment, COGOPoint, Parcel, etc. For example, after that it is needed to select a COGO Point, and Label is changed from "???" to a property of selected Reference Object. I want to add Reference Text by VBA.

View 3 Replies View Related

AutoCAD Map 3D :: Objects Returned From Data Query Do Not Appear With Their Related Text

Apr 5, 2012

We are using AutoCAD Map 3D 2011 (Service Pack 2 - Version 3).  This is replicable on multiple machines in multiple OS environments.

We attach a source drawing, run a query on Object Data but when that data appears in Model space it appears without any of the accompanying text for that object.

You can then execute the same query with a crossing window which brings in the surrounding objects including their text, but the original object still does not have its text.  If you delete the object and re-run the query with the crossing window again, then the object appears with its text.

This is a nightmare for the users because if they want to search on a specific object, and then have to delete it to get it back with the text, they then have to search for the item in amongst all the other items.  This kind of defeats the purpose of querying that object in the first place.

Is this just the way AutoCAD functions, or are we doing something wrong in our process sequence for querying the object data?

View 3 Replies View Related

AutoCAD Dynamic Blocks :: How To Keep Text Aligned While Rotating Objects

Jun 25, 2013

What I want this block to do is to keep the "REF. NORTH" text aligned and properly spaced whithin a single motion while rotating it with the thick line.

AutoCAD LT 2012
Windows 7 - 64 bit

View 7 Replies View Related

AutoCad :: Why Drawing Open Without Number Of Objects (text) Showing

Apr 17, 2012

why a drawing would open without a number of objects (text) showing? I open it up and all notes are gone, yet another user opens it up in "eDrawings" and it opens fine. Oddly, when in ACAD I click OPEN, the preview ACAD gives me when I click this file once shows the missing text etc. But when I open it they're missing.

Below is a screenshot of firstly the drawing open in ACAD and secondly open in eDrawings.

View 9 Replies View Related

AutoCAD 2010 :: Xref Text Mask - Hiding Objects

Mar 5, 2012

I have some xrefs that have text masks that mask out my objects, moved the sort order to rear (back) but they still hide my objects.  Is there any way to simply disable them in the original xref?

View 5 Replies View Related

AutoCAD 2013 :: Freeze Text Objects On Same Layer In One Viewport?

Oct 22, 2013

Can you freeze text objects on the same layer in one viewport but have it still appear on the other viewport without having two separate layers.

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Routine To Scale Text Objects

Jan 8, 2014

Any Lisp Routine to scale text objects a certain value and have the program actually scale each text object as you pick them.

The change text height using the Properties function does not work for what I need because the objects I need to scale are Mtext objects with Background Mask, and when you use the Properties function to change their text height it messes up the background mask so that you have to select each text entity and stretch the mask area smaller or larger, but if you use the scale function it scales the background mask as well so the background mask coverage is still the same.

View 2 Replies View Related

AutoCAD 2010 :: Echoing Data From One Attribute To Other Attributes (or Text Objects)?

Nov 16, 2012

I have a drawing template (block) where the drawing number is displayed in two locations (attributes). The same value has to be entered in both attributes.

Is there any way of "echoing" the data from one attribute to other attributes (or text objects)?

View 2 Replies View Related

AutoCad :: Exploded Text As Geometrical Objects / Apply Osnap Options

Jun 20, 2011

Autocad 2007.

Can we treat the exploded text (i.e. individual text alphabets) as geometrical objects?
Can we apply "OSNAP" options on these exploded text objects?

Actually, I would like to prepare the symbol of National Board NB to be used to make the "Name Plate" for pressure vessel.

View 1 Replies View Related

AutoCad 2D :: Convert 250 Single Line Text Objects To Separate MLtext?

Jan 22, 2013

Is this possible? The problem with the express tools is that they place these single line text objects into one MLtext which is not what I want.

View 9 Replies View Related

AutoCAD 2013 :: Crash When Selecting HATCH Or Editing TEXT Objects On Server

Dec 6, 2013

At my office, we are experiencing a major malfunction with AutoCAD and server based files. I believe it is due to a server restructuring that occurred last week and we are having troubles since then.

Basically, on some drawings, all I need to do is select a HATCH object (of any size) and AutoCAD crashes. The same behavior is exhibited when editing an MTEXT object or, say, a dimension TEXT. I was also able to recreate the crash by typing STYLE, trying to edit the text STANDARD template, and essentially anything having to do with "simplex.shx."

View 6 Replies View Related

AutoCAD 2013 :: Dimension Tags And Text / Point Are Merged With Other Drawing Objects

Oct 20, 2013

i am opening file in autocad 2013, my all dimension tags and text and point are merged with my other drawing objects how can i separate.

View 1 Replies View Related

AutoCAD 2010 :: Starting Points Of Lines Text And Objects Are At Grid Line Intersections

Jun 26, 2012

 I cant start drawing an object from anywhere else( ie. inside a grid) except form the points where grid lines intersect. How do i go back to old system? I need to get some work done fast.

View 2 Replies View Related

AutoCAD LT :: Text Editor Missing Ruler To Adjust Width And Length Of Mtext Objects

Feb 17, 2012

I lost the ruler to adjust the width and length of mtext objects in the editor settings. 

How can I get this ruler back?

View 2 Replies View Related

AutoCAD Print / Plot :: Text Objects Not Printed In Conceptual Paper Space Viewports?

Jul 3, 2012

When printing a paper space viewport in Conceptual Visual Style mode, text objects are visible in the print preview but not in the printout on paper. Why are they not hidden in the preview if they are not going to be printed?

View 2 Replies View Related

AutoCAD Civil 3D :: Rotate Multiple Text Objects 180 While Retaining Individual Insertion Points?

Feb 14, 2013

I have numerous text objects I want to rotate 180 while retaining each text objects insertion point.  There's got to be an easy way to do this.

Long explanation:  I created an annotation template to label pipe diameters on an imported shapefile.  Everythings good, labels are parallel with lines, except for the fact that some labels are upside down.  Is there an expression that would eliminate this?  In my annotation template, my rotation expression equals the "angle" field of the object.  My "quick and dirty" fix was to burst the annoation labels, and manually rotate necessary text, which wasn't a huge headache since I'm dealing with a relatively small number of labels, but in the future I might have hundreds of upside down labels.

View 3 Replies View Related

CorelDRAW X6 :: How To Run Add Objects In Text Box

Nov 16, 2013

I glad to know can i run object with text in coreldraw. I'm working on a book the when i format the some paragraphs the fractions and decorative things back and fro from its original position. So it's a pretty hard to arrange manage on its original position. I try by grouping them with text boxes. The real problems is about fractions and square roots which is drawn by nodes. Can i add equation from math type in text box.

View 2 Replies View Related







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