AutoCad :: Import Layer Group Filters?
Apr 16, 2011
I'm trying to import layer group filters from dwg to dwg. I know that this feature removed with Autocad 2005. I know i can import layer states, but layer states doesn't solve my problem. I tried "lfilterio" but it's not working.
how to make it, with or without a lisp routine. Or may be write one?
View 9 Replies
ADVERTISEMENT
Oct 2, 2013
A drawing with hundreds of layers should be simplified for our customer by decreasing the numbers of and renaming the layers (there is yet no target file existing). In order to solve this, I generated group filters and assigned every single layer to them (all printing properties are assigned to objects). The layer groups show the desired layer structure after the transformation (still a three-digit number).
Unfortunately, the LAYTRANS dialog doesn't let me choose layers by group filters or remarks. It seems as all the work was for the birds.
Is there any way to translate my layers using filters or remarks?
I use AutoCAD Civil 3D 2010.
View 4 Replies
View Related
Jun 20, 2008
Notice that the import / export Layer filters is missing in 2009?
View 9 Replies
View Related
Jun 21, 2012
Is this functionality still available. I have seen several threads that mention it being available on some people layer manager, but I don't have it on either. See attachment. I remember there being a registry key you could add or change to the tools, but when I did that I always got two errors in drawings that would appear every audit.
View 6 Replies
View Related
Nov 14, 2012
I need importing and exporting custom layer property filters. Long story short, we XREF a lot of mechanical equipment in our models and when we create a structural drawing make all of the mechanical item print in a light ghosted color. I created a layer property filter with a huge list of all the possible equipment prefix's like *cl-* *tk-* *rv-* and so on to filter out all the equipment layers. It took a long time to create, so I want to export it and import it into future drawing.
View 1 Replies
View Related
Aug 1, 2012
It appears that the Layer Filters functionality is broken again with 2013. Unchecking the "Apply layer filter to layer toolbar" disables the function of layer filters in the tool palette.
View 5 Replies
View Related
Mar 25, 2011
you can match the layer filters with in the layer manager to the drop down on the ribbon..so how do i get the to match so the filter im viewing in the manager is what i see in the ribbon.
View 1 Replies
View Related
Jan 18, 2013
I'm having issues with Civ3d 2013. I pushed off upgrading from 2012 because of the format change and the service pack release. I was hoping little glitches would be fixed.
Here are the a couple of glitches to date that I have seen no resolution to in the long list of threads.
1. Layer filters do not filter, unless I have checked "Apply filter to toolbar". The problem is, I dont want to apply them to the toolbar.
2. Publishing to PDF - when set to lines merge (set in the page layout and the publish setting), the wipeouts dont work, and the background masks on leaders makes a faint border around the text in the PDF. When set to overwrite, to get the wipeouts to not print to the PDF as a big black blob, they have to be on a layer set to color 255. I can work around most of the wipeouts, except for dimensions because the background mask doesn't seem to take.
View 2 Replies
View Related
Jul 25, 2013
I'm trying to write a script that renames a layer, and group within the layer, then an object within the layer (but not a part of the group) and have it run in a loop.
Here's what I've got so far, the group rename doesn't work.
#target Illustrator
var doc = app.activeDocument;
idLayers(doc)//IRename layers
idGroups(doc)//Rename groups
function idLayers(doc){
[code]....
I haven't put in anthing to rename the single object yet since I cant even get the group rename to work. I suspect that the group re-name section isn't working because I'm either using bad syntax or an invalid command.
View 3 Replies
View Related
Apr 12, 2013
How to get the layer filters that are built in to work in the layer manager without pushing the setting into the toolbar? I had the same problem with LT 2013 on my old 32 bit machine. Others in the office running 64 bit did not have this problem with 2013. Running Windows 7 professional 64-bit.
View 7 Replies
View Related
Jun 20, 2013
While I have layer filter on using dialog, I want to add a new layer to this filter.Normally you right click and add layer similar to the highlight layer, however, you if layer filter are on, then layer 1 is created.
Then you have to find this layer, and rename it. I also can use the command prompt to created the layer, However, I want to create a layer name similar to the one in the filter, as if I index the layer. Example:C-topo-spot-existing-phase -1 New layer: C-topo-spot-existing-phase-2.
View 4 Replies
View Related
Jun 7, 2013
Why can't I align a single layer that is inside a layer group? The align tool would always select the top most layer group as the 'boundary' for alignment, thus automatically selecting the whole layers inside of it and align them as a group.
Is this a bug or just GIMP's weakness? It definitely reduces the layer group's usefulness.
View 5 Replies
View Related
May 23, 2013
Does Autodesk have the option to have a drop down for the layer filters, similar to the chose layer dropdown?
Civil 3D 2012 SP4.0 Windows 7 Enterprise 64-bit
C3D 2014 SP1
Dell M6600, Core i7 @ 2.3GHz, 16 GB ram
Dell T3500 workstation, too much ram to post
View 3 Replies
View Related
Mar 31, 2011
My company uses tons of Xrefs - wonderful, however problem comes when having to navigate through 100's of layers to get to the main drawings layers. So I tried using the layer filters to just show my main drawings layers. Here is the problem, I you can select show all layers, not good, can select just the xrefs (show all of them or show just one of them, etc...), or you can show just the used layers - I tried that, but when you create a new layer it is not included in that filter. I tried setting up a custom layer filter, however, I don't know how to right the name or what selection to make that would allow me to exclude a set of layers.
View 9 Replies
View Related
Oct 10, 2013
I am trying to remove all unprotected layer filters from a DWG and getting the following result:
Command: CLEANLF
Deleting layerfilter[0]: 'Test1'...
Autodesk.AutoCAD.Runtime.Exception: eInvalidInput
at Autodesk.AutoCAD.LayerManager.LayerFilterCollection.Remove(LayerFilter value)
[Code]...
Here is the code that produced this output. Why the Remove throws this exception?
<CommandMethod("cleanLF")> _
Public Sub cleanLF_Method()
Dim ed As Editor = MgdAcApplication.DocumentManager.MdiActiveDocument.Editor
Dim db As Database = HostApplicationServices.WorkingDatabase
[Code]...
ps I am running AutoCAD 2013 SP1.1 PV: G.114.0
View 7 Replies
View Related
Aug 15, 2011
My script in VBA works perfect. Now i try to do the same with NET, but nothing happens. Here is the
Public Function CreateSelectionSet(ByVal SelectionSet As AcadSelectionSet, _
ByVal FilterCode As Integer, _ ByVal FilterValue As String) As Boolean
Dim iFilterCode(0) As Integer Dim vFilterValue(0) As Object
iFilterCode(0) = FilterCode vFilterValue(0) = FilterValue
[Code] .....
I can select something, but nothing happens... Where is the error?
View 8 Replies
View Related
Aug 7, 2012
Is there a way to set up a layer filter to strip off the xref name?
I have standard layers in all my drawings. I want to use a filter to setup the type of drawing.. i.e erosion control.
However, from project to project the xref file name changes so filters don't work with the new name...
Anyway, if there is a way to hide the xref filename from the prefix of the layer.. if so, a standard layer filter would grab all the layers with the same name.
Civil 3D 2012 SP2
Win 7, 64 bit
View 4 Replies
View Related
Oct 3, 2013
I was trying to use layer states and layer filters, the way when I use the layer state 1, for example, it will only be shown in my layer panel the layers on/unfrozen for this layer state. I checked the layer management panel and removed the layers I didnt want to be shown from this layer state 1 and hit ok/close, but they're still being showed. So i created a filter, turned it on and saved my layer state with this filter ON, and nothing was changed.
View 1 Replies
View Related
Jun 16, 2010
My layer filters are not working on the ribbon, why and/or if this is an autocad bug.
I created one for hiding Xref layers, which is an inverted filter. it works on the "Layer Properties Manager" but does not work on my ribbon layer menu. If i turn on the old layer dialog it is working in there.
I know there are many differnt views about the ribbon so i dont need any of the comments telling me to turn it off and get on with it etc.
If you look at the attached images you can see the screen shots of my problem. Note that i have the layer settings correct. Autocad Help says that if the "apply filter to layer toolbar" is on then it will apply this to the ribbon. which it does not.
View 9 Replies
View Related
Jan 22, 2013
I am using 2013 C3D with SP1. After I publish sheets using the sheet set manager my layer filters stop working (will not filter layers, it will just display the last layer filter used prior to running the sheet set manager).
View 3 Replies
View Related
Nov 6, 2013
This problem just started when I upgraded to 2014. When I try to set up layer filters the Layer filters properties dialog box does not show. I'm guessing the function is working its is just that the dialog box is poping up somewhere out of view of the monitors, forgot to mention it is a 2 monitor set up.
View 2 Replies
View Related
Feb 16, 2012
I'm trying to set up a layer filter that excludes Existing layer names, Following NCS standard, Existing information layer names always end with a -E
Help file says:
~ (tilde)
Matches anything but the pattern; for example; ~*AB*matches all strings that don't contain AB
but using ~*-E (tilde asterix hyphen E) returns all the layer names that end with a "-E"
does the tilde not function with LayerProperty Filters?
Trying on Map3d 2011
View 4 Replies
View Related
Sep 9, 2013
We have one template that we use for starting all our drawings. This contains all of our layers, layer filters and most commonly used blocks.
Then we have a template file called "Titleblocks" -- this contains one layout for each different size border as well as vport definitions for Plan, Profile or P&P.
When I used the C3D P&P tool to create my sheets, it of course used the Titleblocks template which means that the filters are lost. Is there a relatively simple way to add those filters to my sheets? Each sheet is a layout in a separate dwg file.
View 4 Replies
View Related
Jan 22, 2013
We have a number of standard layer group filters. We also have a utility that allows us to re-create our standard layers with the push of a button, making it easy to use the PURGE command to keep the drawings clean.
We have noticed that once we purge our layers out, the group filters are broken. After reinserting the standard layers, some of them show no layers, and others show all of the layers, neither of which is correct. It seems that once a Group Layer Filter no longer sees the layers it was set to include in the layer list, it forgets all its settings and becomes useless.
How can we continue to use PURGE without losing the functionality of our layer filters?
View 3 Replies
View Related
Jan 7, 2013
extend the context menu of "Layer Group". We have a "save" option for single layer but i want the same for layer group
View 1 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
May 3, 2012
When you use the Import Survey Data wizard it automatically creates a point group that goes to the top of the list. This used to be created with a standard point style and description, but something has changed and I'm getting a different symbol and label that I definitely don't want as the default. I would think that this would be controled by the CreatePointGroup settings, but that isn't working for me. I can't find any other settings that would override or control this.
(running C3D 2012 sp4, Win7 64bit, 8GB)
View 9 Replies
View Related
Jul 28, 2012
I have determine that my AutoCad 2009 will allow me to drag/drop layers to an existing Group Layer Filter, but it will not allow me to right click on the Group Filter>Select Layers>Add. Once I go to the model space an select layers then "enter" no layers are added to the Filter Group and it gives me an error message that says "unable to modify layers while another command is active".
View 0 Replies
View Related
Jul 27, 2012
Why my AutoCad 2009 will not let me select new layers to a specific group layer filter. It was working just fine and yesterday all of sudden it will not let me add new layers to a specific filter. Is there a button or command that maybe would have changed that function. Everything else seems to be working on the Layer Manager.
View 3 Replies
View Related
Aug 7, 2012
I use a lot of Group Layer Filters so I can turn things on/off quickly. My problem is I have been creating my Layer Filter Group by right clicking on the Layer Group Filter>going to Selection>then click Add> then go back to my drawing or Layout tab and select all of the layers I need then click enter. One day my AutoCad would not let me do that anymore, and even after I click on enter it gives me an error message saying the command is still active. Now from my Layer Properties Manager I can select any layer and drag/drop it into any filter and it works, but I really need to be able to select things within the model space or paper of each layout tabs.
View 0 Replies
View Related
Jun 5, 2012
How to export from Photoshop original filters and import them into Paint.NET?
View 5 Replies
View Related