AutoCAD Map 3D :: Lock Current Layer - Turning On / Off
Apr 9, 2012
Is there a way to lock the current layer (to say layer 0) so that is STAYS the current layer regardless of my isolating, turning layers on and off etc?
Really annoying to keep getting those "Are you sure you want to turn off the current layer" messages and it would prevent me from either drawing thing on a layer I don't intend to, or drawing on a layer which is off (which confuses me every time).
View 4 Replies
ADVERTISEMENT
May 3, 2013
Is there a macro or lisp file that allows you to click on a element in the xref or active file and turn it off?
View 5 Replies
View Related
May 8, 2012
When i click on the green line has you can see on the image. The layer toolbar wont show me the right layer, like if it's not working. But i can see the right layer inside propreties.
Is there a system variable to ajust to see my layers inside the Layer tool bar?
View 1 Replies
View Related
Nov 18, 2011
I'm currently using AutoCAD LT 2012 and when I create a new layer and set it as current in the layer manager, regardless of what color I set the new layer to, the new layer's color remains the same as the previous one in the properties box even though the colors of the layers are always set to "by layer."
View 3 Replies
View Related
Sep 24, 2012
Is it possible to lock a layer within a document and password protect that specific layer?
View 3 Replies
View Related
Jun 10, 2012
I am in 2D mode in autocad, drawing a plan. I have locked one layer and also increased the translucency, jet my snaps still respond to the objects in this layer, where all I want to do is keep it as an underlay while I draw the rest of the things. The objects within this locked layer are also selectable, they come up with doted lines once selected, but I can't edit or move them, because the layer is is locked.
Is there a way to lock the layer, so that it is completely ignored by snaps and selection, jet kept visible with little transparency?
I am using AutoCad 2013, and there are only blocks within this layer.
View 7 Replies
View Related
Jul 11, 2012
Is there a way to lock down a block once it's in the drawing, without locing the layer?
View 0 Replies
View Related
Apr 8, 2012
We are using AutoCad 2012. Our company have more than 32 disciplines. For any projects the drawings are prepared with many disciplines. Civil does the civil drawing portions, water does the water pipeline portion, electrical does the electrical cable layout portions etc. etc. Each departments have their own set of layers in the drawing.
Now the problem is civil can accidentally modify the entities of electrical departments / utility departments. Though we lock the other disciplines layers programmetrically, but user can unlock the other disciplines layers easily if he wish to. Can we make those other disciplines layers read only? So that users can draw / modify in his own discipline layers but can not do that in other disciplines layer. But he can refer those layers / copy entities from those layers if he wish to? Some sort of xref type of thing is required, but we can not use xrefs as we work in a single drawing and our custom drawing management system is integrated with this type of file system accross the offices.
View 6 Replies
View Related
Nov 29, 2013
Turning on / off a shape files layer on viewport, I couldn't figure out why turning off a shape file layer in a particular viewport (attached) does turn it off in all other viewports.
View 5 Replies
View Related
Sep 4, 2013
I have been working on a drawing and out of the blue, when I opened it the other day, all this tick marks where peppered all over the drawing. I discovered they were like point marks from dimension layers that were turned off. If I freeze the layer on top of turning it off, the tick marks do go away. I am running an old version of Autocad, 2007.
View 4 Replies
View Related
Sep 17, 2013
I'm working with a DWG that already has a-gazillion VPs.
I'm currently making new layers, but the "New VP Freeze" option only seems to apply to new VPs made AFTER the creation of the layer.
I need the new layers I'm making to be Frozen retroactively, if you will, in all previously-made VPs.
Short of going into each and every VP and manually VP Freezing these few layers, what can I do?
View 1 Replies
View Related
Sep 21, 2006
way to do this from the layers menu (ctrl-click new layer icon), but is there a key combo? I use shift-ctrl-n a lot to make new layers, but often I need to make a new layer *below* the current layer.
View 1 Replies
View Related
Mar 27, 2013
I want to make a layer from external reference current.
I tried to identify it with its full name, but I got an error: eInvalidInput. So I found out, I have to use only the part behind the pipe.But then there is a problem, because this name is not unique withing the drawing.
Any number of xrefs can have such layer and also the drawing itself can have a layer with the same name. How exactly can I set a layer from xref current?
example:
layer from xref1: Xref1|LayerName1
layer from xref2: Xref2|LayerName1
layer from the drawing: LayerName1
View 6 Replies
View Related
Sep 10, 2013
how to obtain the current layer state?
View 5 Replies
View Related
Mar 29, 2012
How to turn of the "lock symbol" from showing when you run your crosshairs (outside of a command) over a locked layer. Its annoying and i would like to turn it off.
Also, when offsetting a line, is there a way to turn off the imaginary offset line that indicates the offset side, again its annoying and i'd like to turn it off.
View 9 Replies
View Related
Mar 20, 2013
I use the same label style for multiple objects (surfaces) with different layers (i.e. Concrete, Pavement, etc.) I have the label style set to Layer 0, to take on the layer properties I want the label on. When I insert a label, it defaults to Layer 0, then I have to change it's layer. Is there a way to insert a label on the current layer?
View 4 Replies
View Related
Jun 14, 2011
I cant change layers and make it current. The layer manager is stuck on layer 0.
View 8 Replies
View Related
Nov 7, 2011
I thought when you created a tool pallet with blocks on a certain layer and put them in your drawing that the block would be placed on the layer it was created on? When I put a block that was created on 0 layer it will insert on my current layer? These blocks are on a network and I am the only one that has rights to modify them.
View 5 Replies
View Related
Sep 12, 2013
Had a trawl through the options and settings - couldn't find a way to stop this message appearing? Even EXPERT <1> didn't stop it.
View 3 Replies
View Related
Jan 12, 2010
There are certain occasions where I would like to insert a block to inherit the current layer in an active AutoCAD drawing. This happens frequently when a client requires a certain layering standard and I have a block from another drawing with different layering standards. To correct this it usually involves several steps - Explode and change the layer, setbylayer, bedit, etc,
Is there a command to where I can directly insert a block and its layers change to the current layer of the active AutoCAD drawing?
View 9 Replies
View Related
Dec 19, 2012
Private Sub UserForm_Initialize() Dim layerColl As AcadLayers Dim entry As AcadLayer Dim LayList As String Set layerColl = ThisDrawing.Layers For Each entry In layerColl ComboBox1.AddItem entry.Name Next End Sub
I have a form with a combobox. That combobox is filled up with all layers in a drawing. (see above)
Now I want to make the layer that I have selected (value) in the combobox the current layer in my drawing.
How can i make it current?
View 2 Replies
View Related
Feb 1, 2012
In the hatch dialogue there is a setting to target the hatch to a specific layer. How does one set the default to ALWAYS be "Use Current"?
Attached jpg shows the target layer as ffbrg, but I want that to ALWAYS read "Use Current" when creating a NEW hartch. In other words, I am happily working in a specific layer creating all these hatches and then realize LATER that all the hatches were in different layers causing great confusiion and havoc.
View 9 Replies
View Related
Feb 24, 2011
Using C3D 2010, I have a drawing that has a horizontal alignment and it is stationed. I see text at every 100 feet and tick every 50 feet. Perfect. I have that drawing x-refed into another drawing. The station ticks take on the properties of the current layer in the drawing they are x-refed into. If I change to layer defpoints, the tick to not plot! Shouldn't the ticks be fixed to a certain layer?
View 4 Replies
View Related
May 12, 2011
How can I disable the "the current layer will be off" popup when hiding layers? I found this:
[URL]
but I'm afraid the expert command is only valid for commands
View 6 Replies
View Related
Jul 6, 2009
Wondering about the lock on background layer, the manual says the background layer will be partially locked unless it is transparent.
View 3 Replies
View Related
May 15, 2013
I went to lock a Layer (the whole layer) and could not - I had to Lock the item IN the Layer (one item: and the Layer still did show as Locked).I have a screen shot; but, it's been a bit & I don't see how-to attach it.Plus, shouldn't I have been able to Lock the Layer & the item in it? Is this a Bug?
View 4 Replies
View Related
Jan 16, 2013
When I set a layer as current, every object or line I select in the drawing appear to be on that layer in the toolbar. Although in the properties toolbox, I see that the line I selected is still on the right layer.
I can't work in paperspace either, when I freeze a layer it freezes all objects. It seems like whenever I give a different layer to an object, it attributes to all object that same layer.
When I open the same drawing in acad 2008, everything is ok, the objects have the proper layers.
Is there a command for that or it's an acad 2013 problem?
View 9 Replies
View Related
Jun 16, 2012
How to toggle the layer lock/visibility in CS6 than in the earlier versions.
It seems that there's more padding around the lock/visibility icon, and you have to be really precise to click it... increasing the row size doesn't really make any difference, as the "padding" is still there. Wheres in the earlier versions clicking anywhere within the toggle box would enable/disable it.
View 2 Replies
View Related
Aug 13, 2013
Just starting to use 2014, and so far not so good. I tend to keep the Properties Palette open and docked. In 2014, if my current layer is 0, any object I select in a drawing shows as Layer 0 in the Design tab of the Properties palette. If I change to a different layer, any object selected shows that layer in the Properties palette. If I start a new drawing, enter WALLADD and draw a wall segment, the A-WALL layer now correctly appears in the Layer Manager, but when I select the wall, the Layer in Properties is the current layer, not the A-WALL layer it should have gone on. Also, Quick Properties is on, but doesn't pop up anywhere.
View 5 Replies
View Related
Aug 7, 2012
We have survey files that we xref into our design files. In the survey files themselves, the points don't change color. When we xref them in, the point markers (only the circular node on the actual point, not the line coming off of it) take on the color of whatever the current layer is in the drawing, only fixable by changing the current letter and regenerating.
View 1 Replies
View Related
Apr 13, 2013
I have used the same basic skin retouching method for hundreds of pictures. Usually I end up with very nice, natural looking skin. Today, the same technique is turning the skin gray on any picture I attempt to use it on. I cannot figure out why. Essentially, I copy the background layer. I do my spot healing on this layer.
When I'm through, I make 3 more layers. On the first, I use the Median filter. On the second, I use a high pass filter. Then on the 3rd, I add I layer mask, painting in black, and go over the skin. It is always gray on the mask. I then go back and reduce the opacity of the high pass and median layers. Usually I end up with smoother, but natural skin and it's normal color. Today, every time I attempt to do this, the skin stays a muted gray. I cannot figure out why. what might be different that I'm not noticing?
View 1 Replies
View Related