AutoCad :: How To Delete Layer Having No Object
Apr 16, 2012
I am using AutoCAD 2008 and I have a layer that contains no objects which I cannot delete. If I try I am told there are objects on the layer but I cannot find any at all. I have turned off all other layers to try to find the object I need to delete but there is none. How to manage to get rid of the layer.
View 8 Replies
ADVERTISEMENT
Oct 2, 2011
I'd like to delete a layer but the layer cannot be deleted from the object manager as the delete menu item is disabled for that layer.
View 1 Replies
View Related
Oct 4, 2013
Everyone at the office where I work is having the same problem with AutoCAD 2014:
1. When creating a new layer state, and selecting all layers and clicking "remove from layer state" and then "okay", upon going back into the layer state, about 80% of the layers have returned and you have to select all and delete again and hit okay, and then go back in and do it again, about 7 or 8 times total before the layer state is cleared out and ready for you to add back just the desired layers. Even if you don't create a blank slate layer state to begin with, whatever layers you delete, once you hit okay and go back into the layer state, most of the ones you just deleted are back.
2. Even more of a problem is that sometimes all the already created layer states will suddenly reassimilate ALL layers in the drawing, and the above process has to be done to all existing layer states.
This takes an enormous amount of time to correct for multiple layer states, which we typically have in a drawing.
View 3 Replies
View Related
Jun 18, 2013
If I drag an effect from the target circle of one object to anther in the layer's panel it replaces the effect along with all appearance. But I want just to add the effect. For example, a layer has a drop shadow and a path, round corners. I want to move the drop shadow from the layer to the path so that the path now has the round corners and the drop shadow. To do this I have to open the shadow effect of the layer wright down its parameters, then create a shadow effect for the path with the same parameters which is a lot of work.
View 3 Replies
View Related
Aug 15, 2013
Why can you no longer delete layers with the delete key?
View 4 Replies
View Related
Apr 17, 2012
lisp..It work fine but just that i need some minor modificatio to it...At moment, when i activate the lisp, it will automatic select all dimension,leader and multileader to a layer call "DIMENSION"...Anyway i wonder if it is possible to prevent any dimension,leader or multileader in layer "Section" will not be change to layer "Dimension"?
View 2 Replies
View Related
May 18, 2013
I cant delete layers named : ceco.net1/ceco.net2/ceco.net3...how can i delete them
View 9 Replies
View Related
Feb 13, 2011
1. AutoCAD 2011, new user & new install. I’m going throught the tutorials and have lost ability to repeat past ability to do tasks. One being to highlight an object and then delete using the Delete key. Second example being lost is to left click a drawn line and then to hit delete. Is this a setup problem?
View 4 Replies
View Related
Nov 9, 2013
I have a big complicated mesh surface and under every mesh edge there is a line (I have imported it from another software). Now I want to delete lines but I cant select them one by one because it take too long.
View 4 Replies
View Related
Mar 30, 2013
I'm trying to delete a unused layer. But when I do that I get the following error (see attachment). I googled a bit and figured out that the LAYDEL command might solve my issue, but as I'm using Autocad 2013, that's not possible, as it doesn't have this command..
The block that causes the error can also be deleted, I tried with the purge command, but must be doing something wrong cause it didn't work. With regard to the purge command, I see it this way (attachment 2), how can you display it in a window kind of view to get a better overview?
View 4 Replies
View Related
Sep 7, 2012
I have a layer that contains no objects at all but which I cannot delete. I have tried LAYDEL, QSELETE and other commands which I found by reading other posts with similar problems. Unfortunately nothing appears to be working at all. I am using AutoCAD 2008.
View 9 Replies
View Related
Jan 3, 2012
sometimes i can't delete an unused layer, why? if there's a causal factor, can i ignore and just DELETE it?
View 9 Replies
View Related
Oct 25, 2011
How to delete duplicate or overlap point object? I tried with overkill command, But I didn't get output.
View 5 Replies
View Related
May 25, 2012
In this particular drawing I have a layer I can see in my Layers Properties Manager but I cannot find in my drawing and it will not let me remove it.
this is a record of what I have just done:
Command: PURGE
Purged *D19.
Purged *D27.
Purged *D32.
Purged _None.
Command: *Cancel*
Command: <Switching to: 3D>
Regenerating layout.
Regenerating model - caching viewports.
[code]....
View 9 Replies
View Related
Feb 12, 2011
I want to delete Xref-dependent layer. AutoCAd says I can't delete them. I want to delete them.
View 9 Replies
View Related
Nov 16, 2011
i have problem with hatch,if i delete any lines from related hatch protion object area, my all related hatch object erased.pls guide me how to solve problem.
View 6 Replies
View Related
Sep 24, 2013
There's a layer in the drawing we received from the surveyor that doesn't match the client's standards. When I try to merge it with another layer or delete the layer, the command stops as soon as I pick a line on the layer. There are no objects visible on the layer so it may part of a style. I don't think it's part of a block as the surveyor used the client's blocks.
View 5 Replies
View Related
Mar 7, 2013
I get the "Standards - Violation Found" dialog box coming up only after I delete an object.The previous operation created an object that does not comply with standards, What do you want to do? Choose a standard object? Keep the nonstandard object? The object (dimension) was created correctly but when deleted I get the warning.
View 2 Replies
View Related
Mar 30, 2013
I'm trying to delete a unused layer. But when I do that I get the following error (see attachment). I googled a bit and figured out that the LAYDEL command might solve my issue, but as I'm using Autocad 2013, that's not possible, as it doesn't have this command...
The block that causes the error can also be deleted, I tried with the purge command, but must be doing something wrong cause it didn't work. Oh yeah, with regard to the purge command, I see it this way (attachment 2), how can you display it in a window kind of view to get a better overview?
View 3 Replies
View Related
Feb 20, 2013
i have a small lisp and i would like for it to:
when i invoke the plot command, it will first check if there is a layer state called "Temp"if "Temp" exists, then delete "Temp", then re-create "Temp", then switch layer state temporariliy to "Plot" to plot the file, and then switch back to the "Temp" layer state againbasically, the "Plot" layer state will be set based on how the drawing(s) will plot. if a user makes changes here-n-there in the drawing, when the user wants to plot, the software will save current state as "Temp", plot using the "Plot" state, and switch back to "Temp" state at the end. all i am trying to achieve is to somehow over-write the "Temp" state. below is the LISP.
(command "undefine" "plot")
(defun clot ()
(if (layerstate-has "Temp")
(layerstate-delete “Temp”)
)
[Code]....
Civil 3D 2013 SP1, Win 7-64 bit
12GB RAM
View 9 Replies
View Related
Aug 28, 2012
i have gotten a drawing from another user and have managed to purge all of thier layers except for one. I have deleted everything out of the drawing, done "select all" numerous times and deleted, but this layer still won't let itself be deleted. I have made sure it is not the current layer, w blocked the whole drawing etc. There was an ole image in this drawing at some stage, could that have left this horrible layer "25L"???
I hate when i have rogue layers in my files
View 3 Replies
View Related
Dec 9, 2008
I opened a drawing this morning that was sent to me by another office. I tried to open the layer property manager and it gave me a message that there were more layer filters than layers and that I should delete some of the filters. I said ok, but the property manager dialog box never opened. Now I can't open the layer property manager dialog box in any of my drawings.
View 7 Replies
View Related
Jul 29, 2013
lisp program to delete all objects in a drawing based on Layer excluding one layer objects.
in AutoCAD.
Example : I may have 10 layers in a drawings like 1 to 10. I need to delete all objects on 2 to 10 layers.
View 9 Replies
View Related
Sep 2, 2013
I have 2 or more extruded shapes in a 3D scene, the trash can is grayed out and each object has what looks like a small padlock on it and I can't delete anything .
View 2 Replies
View Related
Jul 25, 2006
I recently started using photoshop 7 again, and while messing around with pens, pencils, shapes, vectors, masks, and filters....I messed something up.
When only one layer is left, I can't delete it! There is a icon or symbol to the upper left of the project, which won't go away.
Is this a path? layer? I accidentally pressed "OK" on some screens that I didnt get to read ::slaps forehead::
This is having a profound affect on other things I'm trying to do! This messes up my invert, and some filters....I need to get rid of this mess.
heres a screenshot of it ....
View 4 Replies
View Related
Jul 27, 2012
How can i delete the layer content without delete the layer? the question is there is selected area. i want to delete the selected connect except deleting the selection only content. and i should delete the layer .
View 3 Replies
View Related
May 30, 2012
I want to delete a layer in a banner. I am a novice with gimp and looked to a tutorial to find out how. It says:
Go to File > Dialogs > Choose Layers or just hit CTRL-L. This opens up the Layers Dialog (or window).
The problem is there is no dialogue option in file. I do not know what to do.
file:///C:/Users/michael/Desktop/gimp.htm
View 1 Replies
View Related
Apr 3, 2012
I am writing my own Illustrator scripts.
How do I write a script to delete layer with ".ARD" name.
View 8 Replies
View Related
Oct 24, 2012
A customer brought me some DWG plans, five files' worth. He wants pricing on cutting it out of wood. The cutting part won't take long, but fixing the file will. I could see that there were multiple lines because some lines were thicker.When I select one of the thicker lines and delete it, it's gone. So I knew there wasn't a second line below it. Then I tried Ctrl-K, to break apart the curve. Wow, some of the lines had 23 copies! So I would hold Ctrl, de-select one of the lines, then hit the Delete key to erase the other 22. This will take a lot of time to clean up like this. Do you know of an easier way to remove these excess curves?
View 9 Replies
View Related
Jun 16, 2012
I am learning to make an envelope and the tut calls for me to make little sewed rectangles around the edges which are to be colored red and blue every other rectangle.
Draw the Rectangle > Ctrl + T > Right click > Skew > and then
Ctrl + Alt + T to Duplicate > press right arrow key to move and repeat until the end of the envelope > and then
Duplicate Layer > change color from blue to red
Here is where I am lost:
I am suppose to select every other rectangle and delete them in order for the rectangles to be blue, red, blue red . How to go about doing this and I have been unable to find a solution in faq's or other posts within the forum(s). I'm not even certain how to ask the question so, that may be part of my quest denied
In Inkscape I would just ungroup them so that I could manipulate/delete them as individual shapes and then (if needed) use the rubber band to recollect them and click a regroup button. I cannot seem to find anything similar to this in PS.
View 7 Replies
View Related
Sep 30, 2013
I have a photograph as my background layer, and then a shape layer on top of that. I want to put a font layer on top of the shape, select the font, and then delete the selection on the shape layer, so whenever I hide the font, the photograph shows through the shape, but every time I do it, no matter the tolerance, the font that is in the shape looks pixelated. I've reset all of my settings, but I'm not sure what to do.
View 3 Replies
View Related