AutoCAD Civil 3D :: Change Lineweight From Bylayer To Byelement?

Apr 25, 2012

I am looking for a lisp that has the same functions as laymrg that will allow the line to keep it's lineweight.

I have several layers in my template file that have lineweights, I want to merge these lines onto one layer but hold the color, linetype, and lineweight of the original layer.

View 2 Replies


ADVERTISEMENT

AutoCad 2D :: Dimension Arrowhead - Can't Change Color To Bylayer

Aug 22, 2011

I have a series of existing dimensions from others which I want to put on a screened layer so they aren't prominent. They are dimension objects, and going into the dimension style manager, I can change the color of the dimension and extension lines and the text to "Bylayer," but I can't find a place to change the color of the arrowhead, which, in this case, is not an arrowhead but is an oblique slash.

I exploded one of these dimensions, and with "List" I found that the slash was a block called "Oblique." When I exploded this, it became a line, which was on Layer 0, and its color was set to a specific color, not on "Bylayer".

Is there a way in which I can change the attribute of this dimension style to override this specifically set color of the oblique line to reset to the color I want it to print in (in this case, "Bylayer").

View 4 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Change Layer Of Object To Color Not Bylayer

Mar 27, 2010

I want a lisp to change all object colours from bylayer to its color Example (if layer doors its color is blue the color of objects drawn in this layer will by blue not bylayer)

View 9 Replies View Related

AutoCad :: Change Lineweight Of Attribute?

May 16, 2013

I have a drawing with numerous copies of a particular block. I would like to change the Lineweight of the attribute so that it is reduced in all of the blocks in my drawing. How can I do this?

View 2 Replies View Related

AutoCAD 2010 :: Add And Delete A (lineweight) From The Lineweight List?

Feb 13, 2012

How to add and delete a “lineweight” from the lineweight list?

I’m wondering if there is a way to add and delete lineweight from the lineweight list?

Software: AutoCAD 2014, AutoCAD C3D, AutoCAD M3D, Revit
Windows 7 (Ultimate 64 bits),
Firefox 20.0,
Kaspersky 2013.

View 9 Replies View Related

AutoCAD .NET :: Change Lineweight System Variable

Aug 26, 2011

How do I change the lineweight system variable

Pressing the command button puts <Lineweight > in the command line.

The last problem I had to search for was to change lineweights

br.LineWeight = 0.35

should be:

br.LineWeight = LineWeight.LineWeight035

View 4 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Explode 3 - 4 Times To Change Lineweight To 9mm

Feb 22, 2013

I have multiple floor plans in a drawing one of which I need to explode 3-4 times to change the lineweight to 9mm. I have tried to put something that will repeat explode but I am having problems with plines within the blocks not exploding.

(defun c:tmp (ss)
(setq ss (ssget))
  (setvar 'qaflags 1)
  (repeat 3 (vl-cmdf "._explode" ss ""))
  (setvar 'qaflags 0)
  (vl-cmdf "chprop" ss "" "lw" "0.09" "")
)

View 9 Replies View Related

AutoCad :: Change Lineweight Of Specific Line In Project Without Changing All Other Lines?

May 20, 2012

How to change the lineweight of a specific line in my project without changing all other lines?

View 2 Replies View Related

AutoCAD Civil 3D :: Border / Leader / Mtext Lineweight / StationOffset Label Versus Multileader

Mar 21, 2012

I have dragged station offset and multileaders next to each other in the drawing. Everything is set to go on the same layer. I am using named (stb) plot styles. The layer's lineweight is set to .25mm. However, I usually make the leaders be lighter in weight - .13mm. I am using text borders on both of these objects.

I can't get both the text and border to be the same in both objects unless I set everything to Bylayer. Given that I want lightweight leaders, and heavier text, this is unnacceptable.

It seems that the StaOff label style text and border weight in DRAGGED state are controlled by one lineweight setting.

In a multi leader, the text weight is always, apparently, Bylayer, and the text border is controlled by the lineweight set for the leader.

C3D 2012 on 64bit Win 7 all up to date
Dell Precision 7core 8GB RAM
NVIDIA Quadro FX 1800M
LDT/C3D user since release 12

View 5 Replies View Related

AutoCAD 2010 :: Keeping Layer Properties Bylayer

Aug 20, 2012

We have a contractor who does drawings for us on occasion. For some reason his drawings won't keep linetype and color when switching layers. Is there a setting that will force all lyers to keep their color and linetype?

View 8 Replies View Related

AutoCAD 2013 :: How To Set Object Transparency Back To ByLayer

Dec 20, 2012

Is there supposed to be a drop down list for the transparency property?  Once I override an objects transparency to say 50 how do I change it back to ByLayer?  Do I really have to just type "ByLayer"?

View 1 Replies View Related

AutoCad 2D :: Text Editor Colour Gallery To Bylayer

Jun 17, 2013

I have lots of MTEXT on a single layer which has the Bylayer colour Red but all the MTEXT is showing as Yellow. When you double-click one of the MTEXT letters it opens the MTEXT editor and I can see that the text has been manually set to Yellow in the ‘Text Editor Colour Gallery’.

Is it possible to change all the text back to Bylayer?

I have already tried using the 'SETBYLAYER' command but this hasn’t worked.

I'm using AutoCAD 2012.

View 2 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Set ByLayer Routine Won't Execute Properly

Jun 19, 2013

Me and a friend are trying to work on a LISP routine to select objects in a drawing and change their attributes to "ByLayer" and other things. He is a familiar with the AutoCAD commands, I have a general idea of how to use LISP and we're trying to put our heads together to solve some workflow issues at our job.

-aDiagram
 
(defun c:set23 ()(setq uecho (getvar "cmdecho"))(setvar "cmdecho" 0)(command "setbylayer" "al" "" "n" "y")(command "-layer" "c" "23" "*")(command "-xref" "d" "*")(command "-purge" "al" "" "*" "n")(setvar "cmdecho" uecho)(princ))

View 8 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Flip Color From Bylayer To Color And Back

May 16, 2013

I am trying to flip between Bylayer and color 150. If cecolor is bylayer set cecolor to 150 and if cecolor is 150 set cecolor to bylayer. It seems so simple but it's not working.

(defun c:22 ()
(setq cc (getvar "cecolor"))
(cond 
((= cc "Bylayer")  (setvar "cecolor" "150") )
((/= cc "Bylayer") (setvar "cecolor" "Bylayer") )
))

View 9 Replies View Related

AutoCAD LT :: Lineweight Not Plotting

Apr 26, 2013

I am trying to embolden lineweights to stand out on the drawing, without them getting in the way when viewing in the drawing.  I have set the lineweight in the layer dialogue box to the max size (2.xx mm), checked the "plot lineweights" in the printer dialogue and switched between none and grayscale (this is so the assigned colors will fade out in the background).  Nothing I have tried thus far has changed the print output on any of my printers (virtual PDF, HP2100, HP2600n, HP2840 they are all very old).  I have read through the lweight command and help sections, but I don't need it assigning the lw just getting it to properly print.

One possible problem: is the line weight relative to scale or is it absolute?  I am printing at 1/8" scale, and that can't change. 

View 2 Replies View Related

AutoCad 2D :: Lineweight Is Not Changing?

Jan 9, 2014

I already change the lineweight on the properties but nothing happens to the line. What's the matter?

View 2 Replies View Related

AutoCad :: Plotting To PDF - Lineweight Be The Same

Dec 6, 2012

Quick question about plotting to a PDF. I'm using autocad 2013 and I'm plotting to a PDF printer called bullzip, a free PDF printer. My question is, will my line-weights be the same if I have kinko's print a PDF file with my drawings in them

View 2 Replies View Related

AutoCAD LT :: Lineweight Settings Keep Resetting

Oct 29, 2012

My AutoCAD LT lineweight settings keep resetting from drawing to drawing, is it suppose to do it or what?

I just want my lineweight settings always (for any drawing) to be as I set them!

View 9 Replies View Related

AutoCAD LT :: Lineweight Thick When Converting To PDF

Apr 3, 2013

I am currently converting my drawing to PDF.  However, certain lines on the drawing are showing up bold and thick when converting.  I understand that they are appearing and disappearing due to me turning on or off the hide/show lineweights feature.  But I would like the lines to be default size.  I don't need them thick.

View 7 Replies View Related

AutoCAD LT :: Lineweight Plotting Too Heavy

Jun 16, 2013

I am running two networked computers and a networked Designjet 510 plotter. One computer runs LT2013 and the other LT2014.

I am having an issue with the LT2013 machine in that it plots much darker than it should (uses a heavier lineweight). I have checked the plotter set up and plot style and both appear the same.

View 1 Replies View Related

AutoCAD 2010 :: Lineweight Not Plotting To Pdf?

Aug 8, 2013

Im trying to print a logo for my detachment using Autocad to PDF but for one the line dont show up in the PDF file and second the original color of the drawing is faded. Black goes to a smoke grey color, lines dont show up, and the red is blurry. I need this to be fixed but I just dont have the skill to do it. And stupid autocad doesnt have a contact number for step by step instructions with an actual human! Im trying to use the logo for a T-shirt but it seems like I cannot for the life of me print a suitable digital image for it. I am using AutoCad ARCH 12...

View 4 Replies View Related

AutoCad :: Unable To Adjust Lineweight

Aug 2, 2013

I have a few objects on a layer (Circles and Lines).

I am trying to make them "Thicker". I have tried adjusting the layers "Lineweight" as well as individually selecting them and adjusting the lineweight but neither is working for me.

View 2 Replies View Related

AutoCAD 2010 :: Default Lineweight Changes

Jun 12, 2012

Using AutoCAD 2011 we always use 0.00 as our default line weight but the default will change to 0.010 with no real pattern. It can be any drawing at any time. We have reset this dozens of times without being able to stop it from reoccurring.

We are also not able to get line weight to display (yes we check the Lineweight Settings, Display lineweight box) again on random drawings at random times.

View 1 Replies View Related

AutoCad :: Lineweight Is Not Plotted Correctly

May 21, 2012

I've just installed ACad2013 & now my dwg - pdf plotter is showing unweighted coloured lines (prints) instead of 'weighted' black/white lines. These then print out incorrectly. How I can revert to my former pdf print settings

View 3 Replies View Related

AutoCad :: How To Set Lineweight To Flatshot Image

Nov 23, 2012

Using acad2011, i have a flatshot image on a separate layer. The lineweight is set by layer, but when i change it in the layer properties manager nothing happens... There is no change to the blocks created by flatshot on the specific layer (other objects do change lineweight).

View 9 Replies View Related

AutoCad :: Lineweight Appear Less Thicker After Copy

Oct 31, 2011

When I copy objects from a drawing to another drawing in .DWG, it appears that the lineweights becomes different between the two drawings.

For example, let's say there is a layer whose Lineweight is 0.3mm, Color is green and Linetype is continuous on the source drawing file. You notice the objects under that layer should be thicker. After copying to another drawing or destination drawing file, I noticed the layer got transferred across which is good and everything else associated with that layer. But then, I noticed on the other drawing, the objects on that layer are not as thick as that of the source drawing file. When i checked the layer on the layer properties manager, it shows the lineweight is 0.3mm. I wonder why the lineweight of the objects are different as if they are 0.00mm and what should I do to keep it consistent on the other drawing after the copy.

View 2 Replies View Related

AutoCad :: Lineweight Not Working When Plotting

Jan 24, 2012

All my lines are the same lineweight when I plot, they do show differently on my computer screen, how can I fix this?

View 6 Replies View Related

AutoCad :: Can't Draw Lines With Different Lineweight?

Apr 1, 2008

Somehow i can't draw lines with different lineweight. I can change the color and the linetype but the lineweight doesn't. In the properties toolbar over the workspace the last option (after lineweight) is not active and shows bycolor!I suppose that is the problem why i can't draw lines with different lineweight!

View 9 Replies View Related

AutoCad 2D :: Color And Lineweight In Properties

Jan 25, 2013

In some drawing I checked the color and lineweight in the Properties but it says By Layer and By Block. How will i know the real color and lineweight?

View 4 Replies View Related

AutoCad :: PDF Lineweight Of Polyline Is Different To Hatching

Aug 1, 2012

I have a drawing with polylines filled with hatching. When I pdf it the lineweight of the poly line is different to that of the hatching....eventhough they are on the same layer and the lineweights is set to 'by layer'.

I have a few rectangles on the drawing which aren't effected...its only the poly lines....

View 0 Replies View Related

AutoCAD Architecture :: Text Lineweight In Tables

Jul 23, 2013

There doesnt seem to be a way to control the lineweight of text in a table. I have changed the color of the text and I have applied a lineweight to the table but the text is way too light. I spent a bunch of time putting info into tables and it looks like total crap and I cant seem to change it. What is up with this?

View 4 Replies View Related







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