Photoshop :: Multiple Selection

Jan 27, 2007

How do I multiply select 2 or more layers using PS2?

View 1 Replies


ADVERTISEMENT

AutoCAD 2010 :: Multiple Grip Selection Not Working When Pan Or Zoom During Selection

Jul 12, 2011

When I select a hatch or polyline or any object with grips for that matter, and hold down shift to select multiple grips on the object or objects and then press my middle mouse button to pan or scroll it to zoom, the grips that I have selected de-select, meaning I have to set up the view so that all the grips I want to move are visible before selecting them.

This is only happening on some drawings (although it is most of them) and only when I use 2012 not 2011. Which system variable it is that has gone screwy that I need to reset? or is it something else?

View 9 Replies View Related

Photoshop :: Making A Selection Around Multiple Layers

Jun 26, 2012

Before I start looking for work on transforming PSD's into working websites, I would like to learn some of the functions and features of Photoshop Creative Suite 5.1.  
 
I recently learned:

Ctrl + Win + Click on Desired Layer… To make a selection around the layer 
 
Then I clicked on, "Refine Edge"… I was able to make a perfect selection around what I wanted using this feature. Very nice, by the way.  
 
There were multiple layers, I merged the visible ones to make one layer. All of the stuff that makes up the banner, at the top of the page. My question is:
 
Can I make a selection around multiple layers, i.e. buttons, other pictures, etc.?
 
Side note question:

Does the document size have any effect on the overall size? Meaning: let's say that banner up top is 775 pixels across & maybe about 450 pixels tall… That's about the size of the image (the selected layer). The document size is laying on, is also 775 pixels across… But, 950 pixels tall. Will that document size have any effect on load time for a webpage?

View 9 Replies View Related

Photoshop :: How To Move A Selection In Multiple Layers

Jun 29, 2012

people want to move multiple layers together. I know how to do that. I want to move a selection in two (or more) layers together. I'd also love to know how to use the free transform tool on a selection box in multiple layers.

View 5 Replies View Related

Photoshop :: Multiple Layer Selection On Canvas

Oct 23, 2005

Can you select multiple layers on the canvas rather than by doing it in the layer dialog?

View 6 Replies View Related

Photoshop :: Multiple Layer Selection Not Working

Apr 28, 2009

I can select individual layers either in the Layer Palette or on the canvas with no problem. It's when I use the selection tool with Shift, Cntrl, or Alt that I cant get more than one layer selected. I want to group and lock layers together so I can scale down the group to a maller image size. 

View 1 Replies View Related

Photoshop :: How To Use Same (selection) Paths In Multiple Images For Batch Processing

Mar 9, 2013

I have a whole bunch of photos I need to batch process, but, when creating an action for this, I stumbled upon the problem that the paths I selected with the pen tool, and saved under the "Paths" tab need to be in every image for to be used in the action.

View 1 Replies View Related

CorelDRAW X5 :: Multiple Selection Within Group

Mar 29, 2011

Is there a way I can do a multiple selection from within a group (without ungrouping)?

View 9 Replies View Related

3ds Max Modeling :: How To Set Value To Multiple Vertex Selection

Jan 29, 2012

I would like to know if it's possible to set a value to a multiple vertex selection.

Exemple : I have 15 vertex selected with different values on z axis.

I want to set all vertex to -100mm for exemple (in one action).

View 3 Replies View Related

Illustrator SDK :: Multiple Selection In ADM Lists

Nov 15, 2011

I have an ADMHierarchyList and I need it to support multiple selection.  I see numerous places in the documention that indicate there is a way to set multiple selection (e.g. "... in a list that supports multiple selection..."), but don't see a way to actually set this behavior.

View 3 Replies View Related

AutoCAD .NET :: Selection Filter On Multiple Layers?

Apr 25, 2012

to select object on a single layer

Dim strLayer as string = "road"acTypValAr.SetValue(New TypedValue(DxfCode.LayerName, strLayer), 2)  

how do you select all objects on multiple layers

Dim strLayer as string = "road,sidewalks"acTypValAr.SetValue(New TypedValue(DxfCode.LayerName, strLayer), 2)  

the above does not work. how do you select all objects on multiple layers?

View 3 Replies View Related

AutoCAD 2013 :: Multiple Selection For Ncopy

Jul 23, 2013

Ncopy let us to copy object from blocks without explode but I couldn't select object multiple or by window selection..

what I can do to select multiple while using NCOPY command.

View 6 Replies View Related

AutoCAD .NET :: Selection Of Multiple Nested Entities?

Jan 11, 2013

There are blocks in the drawing, each containing several nested entities. Need a command which would find all the nested entities which got into the selection area provided by user (not necessary to select entities, just get the ids). GetNestedEntity() does what I need but for a single entity only. 

Selection of 'Trim' command does exactly what I need. How could I achieve the same behaviour?

View 5 Replies View Related

AutoCAD .NET :: Cannot Store Multiple Selection Sets

Nov 15, 2012

From the AutoDESK docs [URL] ......

"AutoCAD.Application.ActiveDocument.SelectionSets. Add method
Not needed/provided" in VB.Net

Thus 'Autodesk.AutoCAD.ApplicationServices.Application. DocumentManager.MdiActiveDocument.SelectionSets' will not work.

So, I can't store multiple selection sets in VB.Net?

Why is it not provided? Or is there some other way to do that?

View 9 Replies View Related

AutoCad 2D :: Selection Deselection Multiple Picking?

Mar 22, 2012

All of a sudden my Cad is now not allowing me to select multiple items one at a time without deselected the ones before. Everytime I select a new item to move it, the grips off of another item I would be moving would deselect. Where is the setting to set this back to where I can individually select multiple items without AutoCad deselecting the what I had selected already.

View 3 Replies View Related

Lightroom :: Selection Of Multiple Folders And Collections In 4?

Mar 22, 2012

With LR 3.6 I could filter folders or collections with other collections, using "Ctrl + [collection]".
 
In LR 4 (Windows) this does not work.

View 1 Replies View Related

AutoCAD .NET :: Multisheet PDF With Multiple Selection Of Windows In Modelspace?

Sep 30, 2013

i'm trying to create a routine, where i can select multiple windows in modelspace, and the plot a multisheet pdf.but I'm having trouble to create multiple pages, it only generates 1 page

I have modified sourcecode from Kean Walmsley:

[URL]

- this routine creates a single-page pdf with only the last selected window.

- the pc3-file I use is able to create multisheets because the original routine with paperspace works fine

- I think it has maybe something to do with the pi.Layout = lo.Id ?
 
<CommandMethod("mplot2")> Public Sub MultiSheetPlot2() Dim doc As Document = Application.DocumentManager.MdiActiveDocument Dim ed As Autodesk.AutoCAD.EditorInput.Editor = doc.Editor Dim db As Database = doc.Database Dim tr As Transaction = db.TransactionManager.StartTransaction() Using tr Dim bt As BlockTable = DirectCast(tr.GetObject(db.BlockTableId, OpenMode.ForRead), BlockTable) Dim pi As New PlotInfo() Dim piv As New PlotInfoValidator() piv.MediaMatchingPolicy = MatchingPolicy.MatchEnabled ' A PlotEngine does the actual plotting ' (can also create one for Preview) If PlotFactory.ProcessPlotState = Autodesk.AutoCAD.PlottingServices.ProcessPlotState.NotPlotting Then Dim pe As PlotEngine = PlotFactory.CreatePublishEngine() Using pe ' Create a Progress

[code]....

View 6 Replies View Related

AutoCAD 2010 :: Multiple Selection Of Objects By One Type

May 11, 2012

 My question is, if there any tool /command, utility in autocad to select all objects of one type at one time : for example all text objects or all dimention objects  if these objects on different layers and have different properties. in my work I have to insert many blocks(not annotative) or parts of drawings which were created by other people and have different from mine settings and properties of text and dimention objects. the insertions add so many layers and objects that I spend lots of time to correct them and to figure it  out.

is there any way( command, utility) to select and manage all of these  objects at one time?

P.S.i think it is very unconvenient that the  plain autocad  does not have dimentions and text as families or some sort of groups that s easy to manage.

View 1 Replies View Related

AutoCAD .NET :: Create Selection Set And Get Insert Point Of Multiple Blocks

Jul 3, 2012

What I am trying to do is create a selection set of blocks with the same name. Then step through the selection set and if the block has an attribute "Tag" with a Specific "Value" then get the insert point.

View 2 Replies View Related

Illustrator :: Direct Selection Tool To Select Multiple Objects

Nov 21, 2013

When I use the direct selection tool to select multiple objects that also contain an image within a clipping set, occasionally the clipped image is included in the bounding box, even if it and its clipping mask are not selected.  Selecting other objects includes them in the bounding box, but even after deselecting everything the bounding box around the image remains and the only way to remove it is to drag a handle (which resizes the image) and then undo the action.  Obviously this is annoying and seriously interrupts workflow.  I've had this issue ever since CS4.

View 10 Replies View Related

Revit :: Doesn't Support Multiple Selection In Material Edition Dialog

Aug 27, 2010

Currently Revit doesn't support multiple selection in Material edition dialog, so when user wants to delete multiple materials, he/she has to select one, delete, then one again and again. It's really tedious and waste lots of time.

[URL]

View 5 Replies View Related

AutoCAD Civil 3D :: Multiple Selection Surface Site Grading On Prospector

Aug 28, 2012

When a file has many surfaces, gradings and sites manually delete them is slow ¿is there a method to select multiple sites, surfaces and gradings on prospector and delete them all at once and not one by one?

View 1 Replies View Related

GIMP :: Drag Or Copy Rectangular Selection Onto Multiple Open Images?

May 27, 2011

I have a task that I repeat all the time, where I have about 20 digital photos that are all taken of something the same size, at the same magnification, but not centered identically. I then need similarly centered, identical size and shape cropped images for all of the images. In Photoshop, a friend with the exact same task solves this by opening all of the images, making a rectangular selection of the appropriate size and shape by eye on the first image, and then dragging this rectangular selection from this first image into each other open images and hand-positioning in each image as he drags it in, so that all of the selections for cropping the images are the same shape and size, and can be individually positioned, rapidly. This exact solution is perfect for this task, and although it works great in Photoshop, selections can't be dragged intact from image to image in the same way in gimp 2.6.11 on ubuntu 11.04/gnome 2.32.1/linux 2.6.38-8 generic , so I am looking for a way to accomplish something similar.

View 4 Replies View Related

Photoshop :: Why Vector Selection Tool (white Arrow) Change Layer Selection To Another

Sep 1, 2013

I have been continually annoyed, when creating a vector mask-heavy document, with trying to select vector mask points by dragging a rectangle only to find that it instead selects a layer higher up which has a larger vector mask.
 
The only workaround is to manually select the points of my mask or to drag a rectangle from outside the canvas, meaning I have to zoom out or scroll to the edge - sometimes annoying if I am zoomed in quite far.
 
I know that the move tool can be set to automatically select a layer, depending on what part of the image is clicked, but why is there not an option to turn this off for vector editing?

View 1 Replies View Related

Photoshop :: Selection / Patch - Select Blue With Quick Selection Tool?

Dec 10, 2012

If you look closely in the attached picture, there is a spot of light blue on the player's helmet, that looks like a mistake (think it should look like the grass behind it)...though it actually may be part of his helmet.
 
Regardless, I'd like to take it out. My idea was to select the blue with the quick selection tool, then bring that selection out to the grass, select the grass with that size/shape of selection, copy/paste and then bring the grass selection into the blue part so it looks like grass in what was the blue part.
 
The problem is I don't seem to be able to move the selection without taking the blue with it (so it's not an empty selection and therefore can't select a piece of the grass.)

View 2 Replies View Related

Photoshop :: Selection On Sliders And Curves Altered When Click Off Them After Initial Selection

Sep 13, 2012

I have Photoshop CS5 on a Mac OS 10.7.4 My problem is that when I am using curves or a slider, my selection does not stay in the same place. For example, I chose the number 8 on a slider, after I release my selection it will either go one number after or before my selected number. I have had this problem since I got my computer, December 2011, but it has only recently started to frustrated me because of having to use Photoshop a little more than I usually do.

View 2 Replies View Related

Photoshop :: Complex Selection - Best Selection Method To Drop Out A Background

Oct 24, 2011

how to "drop out" the background from this photo (I have loads to do which are very similar). Thus far I have tried channel selections and the calculations tool + all the normal quick selection tools and I just cant get it to work without spending hours adjusting things. The end effect I need to achieve is a perfect white background without loosing any of the detail if possible. On a side note I have also tried taking the photo on blue, green, black and white backgrounds but due to the number of colours present in the products its just not working for me.

View 5 Replies View Related

Photoshop :: Multiple Selections To Multiple Layers Or Multiple Files With One Go?

May 26, 2013

how to convert multiple selections to multiple layers or multiple files with one go?

View 6 Replies View Related

Photoshop :: Make A Selection Out Of A Text And Expand The Selection?

Sep 1, 2006

Using photoshop, how do you make a selection out of a text and expand the selection?

View 4 Replies View Related

Photoshop :: Quickmask Selection Is Turning Selection Opaque

Jul 6, 2009

I am trying to cut a person out of a picture with a deatiled background so I am using the quickmask selection and paint brush. I'm done selecting the person and have gone back into normal editing mode. I then inversed the selection created within quickmask to select everything but the person in the background. When I click delete, the background vanishes and the person become opaque.

View 3 Replies View Related

Photoshop :: Feathering A Selection Outwards After Making A Selection

Dec 26, 2003

If I have mad a selection with say an ellipse marque, of say 100px and now I want to fether that same selection outwards, ie to start the feather 10 px outward of the 100px selection so that the 100th px has a 100% transparency and the 110th px has a transparency of zero,thus making the new selection 110px, how could I go about doing it. With the current feathering of the selection, it feathers only in the marquee already selected, not outward, and you cannot place negative feathering px. I know that there is most likely some sort of a ration where you would expand the selection by a certain amount of px, and then apply a ratio of feathering to it to enalble it to feather outside of the 100px marquee.

View 3 Replies View Related







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