AutoCad 2D :: How To Select All Entities On A Series Of Layers

Oct 10, 2012

I need a function similar to Qselect.

In this case I would like to select all entities on a series of layers. (i.e.: a-site-* or a-fill*). I know I can do this with qselect by doing each layer one at a time and append the existing selection set.

Instead, I've been locking all layers except the series I'm looking for, but it seems like there should be a quicker way.

View 9 Replies


ADVERTISEMENT

AutoCAD .NET :: Select Entities By Extent?

Oct 4, 2013

How do I select entities by extent. Let's suppose I have Lowerx ,lowery , upperx , uppery [174.76789855957,28.3978977203369 , 507.941253662109 ,112.090751647949 ]. How do I find entities who have these extents.

View 1 Replies View Related

AutoCAD .NET :: Select Nested Entities

Jan 3, 2013

I select all entities via Editor.SelectAll() method, but the nested entities (inside Blocks) are missing. Do I have to resolve them by iterating through all blocks afterwards or is there a Prompt Selection Option that can be set?

I don't want the user to select the entities, instead I loop through the whole drawing.

View 7 Replies View Related

AutoCAD .NET :: Select All Entities Of A Layer?

Oct 8, 2012

How to select all entites of a layer?

I want to migrate my VB code to VB.NET code, migrate the below code?
 
Private Function GetEntities(oLayerCollection As Collection, sSelectionSetName As String, _ Optional pointsList As Variant = Empty, _ Optional mode As AcSelect = acSelectionSetCrossingPolygon) As AcadSelectionSet Dim oSS As AcadSelectionSet

[Code].....

View 2 Replies View Related

AutoCAD .NET :: Select Entities In Drawing And Show Grips

Jun 11, 2013

I have a command which proccess entities in the drawing and creates a SelectionSet. But, on the drawing i do not see the selected objects . I need to show grips on selected objects . It is a looks like a Quick Select command.  What can i do? What method showing the grips? 

View 2 Replies View Related

AutoCAD .NET :: Unable To Select Entities After Clone And Rotation

Jul 25, 2013

I coded a utility to work with entities rotation. This is a part of a bigger project so i just cutt and pasted together the part of code that have this problem.

Basically i get the selection, i clone it (because this is a copy and rotate) and through a draw jig class i rotate all the entities. This works well but just sometimes when the command ends it happened this weird thing, the entities appears  in the draw but they can't be selected. And all get back to the normally after saving, closing and reopening the draw.

This is the utility.
 
public void Run(object param) { Document doc = Application.DocumentManager.MdiActiveDocument; Editor ed = doc.Editor; Database db = doc.Database; List<Entity> toRotate = new List<Entity>(); PromptSelectionOptions pso = new PromptSelectionOptions(); pso.MessageForAdding = "
Select objects"; pso.AllowDuplicates = false; pso.AllowSubSelections = false; PromptSelectionResult psr =
[code]........

This is the link

[URL]........

View 2 Replies View Related

AutoCad :: How To Select Entities With Window Or Crossing Polygon

Jun 23, 2011

When trying to select entities with a window or crossing polygon (and hitting enter) there are no grips showing to indicate that the selection has been completed even though the entities seem to be highlighted. Syntax: select, enter, wp, enter (draw polygon), enter.

I am a part time user of this wonderful program and only recently moved to 2010 and yet I cannot figure out what I am doing wrong. I have Googled and looked in my texts and still am having difficulty (also attempted to search FAQ on this site but the link malfunctioned).

View 9 Replies View Related

AutoCAD 2013 :: When Select More Than 100 Entities All Of Grip Points Disappear?

Sep 27, 2012

When I select more than 100 entities all of the grip points disappear. With ACAD 2002 there seemed to be no limit to the number of entities you could select without losing the grips, but with ACAD 2007 they started dissapearing though with '07 clicking "View" "Regen" would bring them back into view (unless you accidentally click on another entity). With ACAD 2013 if I go over 100 that's it. This is mostly a problem for me as I use the spacebar shortcuts extensively in creating and manipulating my drawings. I have found other ways to  to acomplish my needs such as using the move command but I have much successful history using my old methods and would like to continue with them.

View 3 Replies View Related

AutoCAD .NET :: Select Multiple Entities And Have Matching Data Shown In Palette

Jul 25, 2011

The 'application' I am trying to make currently adds entites to a drawing. Each entity has data associated with it but also part of a tree of infomation so I store xrecord data along with the objectID in a dictionary tree within the drawing. 

I want to be able to select multiple entities and have any matching data shown in a palette. The same way the properties palette behaves.

I have it working but I can see AutoCAD crunching the data. It cycles through the selection set and the dictionary tree extracting entity data until it finds an ID match in the xrecord.

How the properties palette works so quickly or how I could improve the speed.

View 2 Replies View Related

AutoCAD .NET :: Selecting Entities In Multiple Layers

Jan 15, 2013

Is it possible to select entities of multiple layers?

I've looked at... [URL] .....

...and tried the following code.
 
string[] layerNames = {"1", "2", "3"};TypedValue[] tdv = new TypedValue[(layerNames.Length * 3) + 2];int i = 0;tdv[i++] = new TypedValue((int)DxfCode.Operator, "<or");foreach (string ln in layerNames){ tdv[i] = new TypedValue((int)DxfCode.Operator, "<and"); tdv[i + 1] = new TypedValue((int)DxfCode.LayerName, ln); tdv[i + 2] = new TypedValue((int)DxfCode.Operator, "and>"); i += 3;}tdv[i - 2] = new TypedValue((int)DxfCode.Operator, "or>");SelectionFilter sf = new SelectionFilter(tdv);PromptSelectionResult psr = ed.SelectAll(sf);
 This code gives me an error in the PromptSelectionResult.

What would cause the erro?

View 1 Replies View Related

Photoshop :: Convert Series Of Adjustment Layers Into Single Action?

Nov 16, 2012

I have a Photoshop CS6 document with 20-some adjustment layers and would like to be able to apply their effect to multiple image files. I'm looking for a way to convert the series of adjustment layers into a single action so that I can batch process a set of images. Can this be done?
 
Unless I'm missing something, it appears that no trivial solution exisits. For example, there's no option that allows for selecting the adjustment layers, right clicking them, and choosing 'convert to action.' What I want to avoid is having to redo each adjustment layer just for the sake of recording an action.
 
Also, I understand that I can always "place" (i.e. drag and drop) the image requiring processing into the Photoshop document containing the adjustment layers, saving a merged copy as jpeg, and repeat... but such a manual method would border on insulting to this prowess of a program.
 
Any method of recording an action that can make use of the document with the adjustment layers and a variable document that will be passed through during the batch process.

View 2 Replies View Related

Photoshop :: Redoing Series Of Photos Using Specific Set Of Layers And Filters / Way To Automate All

May 30, 2013

I am redoing a series of photos using a specific set of layers and filters, it takes quite some time to open all the stuff for each photo. I sthere a way to automate all or part of this process?

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Select Non-solid Entities On Solid Layer

Mar 19, 2012

We have this need to have all of the solids in a drawing to be placed in the "solid" layer.

Sometimes folks are drafting lines to develop these solids, and keeping the lines on the "solid" layer, rather than moving them to another layer, or deleting them altogether.

I could get folks to run this command before leaving the drawing.

I'm thinking something along the lines of:

Select all entities that are on the solids layer that are not solids.

If nil, great, do nothing.

If entities are selected, let me do something with them.

I'm hoping the following can be modified ever so slightly.

 (setq non_solid (ssget "X" (list (cons 0 "3DSOLID")(cons 8 "solid"))))

View 4 Replies View Related

AutoCad :: Select Different Layers - Layers Name In Toolbar Does Not Change

Apr 29, 2006

when i select diffrent layers,the layer's name in toolbar does not change, i can not change the layer, color,and other settings.my autocad version is 2006 and 2007.

View 5 Replies View Related

AutoCad 2D :: Want To See Objects On Layers But Not Select Them

Nov 4, 2011

I have a drawing with a bunch of stuff on different layers. I want to be able to see the stuff on those layers but not select them. I know I can lock the layers but if I use a left crossing window to select objects it still grabs the stuff on the locked layer.

I could make a copy of all of it, move it to layer 0, freeze all the layers except 0, defpts, and the layer I am working on, then move the stuff to defpts and lock layer 0 and when I am all done delete everything on defpts and thaw everything.

View 9 Replies View Related

AutoCAD 2013 :: Script (command) To Select All Layers?

Jun 13, 2012

I want to hide all layers through scripting. Firstly I have to select all layers for the same.

So, what is the command to select all layers?

View 5 Replies View Related

AutoCAD Visual LISP / AutoLISP :: How To Select All Layers Using Command Line

Nov 23, 2011

How I can select all layers using the command line?

I am going to write a piece of lisp which will reset all the lineweights for all layers to default and have started by doing it manually on the command line to see what I need to automate.

To start with I choose -layer then LW  then type default and it is here I have a problem.  It asks enter name list of layers for lineweight default  which is where I need to choose all.

View 3 Replies View Related

AutoCad :: Why 2009 Not Allow To Select New Layers To Specific Group Layer Filter

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

Photoshop :: How To Select All Layers At Once

Mar 21, 2013

I have a bunch of layers, WITHOUT holding down control and clicking each one, one by one, is there a button or shortcut to just auto highlight all the layers, Im trying to move them around evenly together on the canvase at once.

View 5 Replies View Related

Photoshop :: Can Not Select Layers - CS3

Mar 1, 2008

I am using the 30 day trial version of CS3 before I buy. I have been using Elements for years.

I have a PSD file that was sent to me. In elements I can click on any item in the file and move, delete etc.

But in CS3 I can not do that. I have to go to layers and find the layer I am looking for, click on it in the layer list and then I can go to the image and manipulate it.
Is this just the way it works in CS3 or do I need to flip a switch somewhere.

View 7 Replies View Related

GIMP :: Can't Select Other Layers

Jul 28, 2011

I was rotating a layer in GIMP but now I can't get off this layer/select other layers.

View 2 Replies View Related

GIMP :: How To Select Layers

Nov 10, 2012

I'm new to GIMP, downloaded v 2.8.2 today. I opened an image, selected duplicate layer, which was named image_name (copy) - so far so good, but when I make any changes to that it makes changes to both layers, I can NOT find instructions anywhere on how to select just the (copy) layer, one would think it would be automatic, that the program would only work on a single layer.

View 2 Replies View Related

Photoshop :: Can't Select Layers With Transparency

Apr 4, 2013

1. I can no longer nudge grouped layers. Photoshop complains that it cannot nudge layers in a group.
 
2. When I try to move a layer selected in the layer panel (or selected via ctrl-alt-right click), a click on the layer selects the layer effect above instead.It seems like there is some kind of click through enabled. If I click on a transparent part of the layer, the layer below get selected instead.
 
My first thought was that this had something to do with "Auto-select layer/group", but it's disabled. how can I go back to normal mode, so I can click anywhere in a layer, transparent or not, and move the items in it etc?(I'm using Photoshop CS6.)

View 1 Replies View Related

Photoshop :: Select Or Move Layers In CC

Jul 22, 2013

Beginner question:  When I try to select a layer in my layers palette, I am unable to. Nothing happens. 

View 2 Replies View Related

Photoshop :: Cant Select Multiple Layers?

Mar 16, 2011

All of a sudden, I cant use the CTRL+CLICK to select Multiple Layers. When I do, I get this little box at the point of the cursor and ""Load Selection" pops up in the History.

View 6 Replies View Related

Photoshop :: Gradient: Select Layers

Sep 5, 2004

for the life of me i can never remember how to apply a simple gradient to a single layer. the gradient i apply always alters with the rest of the image. i ctrl+click on the layer, and then try the same on the mask (if there is one)....

View 1 Replies View Related

Photoshop :: [Auto Select Layers]

Jan 16, 2008

I have version 6.0, and for some reason, something changed the other day where I can no longer simply click on the layer and move it around. I now have to right click and select "layer 17" before being able to move it. I can't seem to find how to edit this setting.

View 1 Replies View Related

Photoshop :: Select Items Without Layers

Dec 8, 2008

In Photoshop CS3... I have several items on their own layer. Is there away to select these items without having to find their specific layer.

Is there a tool to select the items I want on my page, thus Photoshop automatically selects their associated layer?

I would like to select more then one item at a time, but their all on separate layers.

View 3 Replies View Related

Photoshop :: I Want To Select VISIBLE Layers Only!

Feb 11, 2005

I have a PSD with about 100 layers. When I use the select tool and press while holding CTRL (to activate "auto select layer") I sometimes select invisible layers.

View 9 Replies View Related

Photoshop :: Merging Few Select Layers

Sep 27, 2005

way of merging all the layers at once together in a photoshop application, but i do not know how to merge only ditinct ones that i want to. Is there anyway how, and if there is, a shortcut would be greatly oblidged.

Version: Adobe Photoshop CS 8.0

View 2 Replies View Related

Photoshop :: How To Select Bottom Layer Of 2 Or More Layers

Oct 2, 2012

This has baffled me that photoshop does not do this. But why can't I not ctrl+click on a layer and get to the layers underneath that layer? No matter how many times I ctrl+click the layer to select it, it just selects the same topmost layer.

It is interupting my workflow majorly and it is really frustrating when using a lot of texture overlays to have to hide them and then ctrl+click to find where the layer is that I want to work on. Right clicking on my document just brings up all layers in my document no matter where my mouse is.

This is what shows when I right click: [URL]....

View 10 Replies View Related







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