Photoshop :: Selection Modify Commands Grayed Out?

Apr 6, 2012

In PS CS5 Extended latest version. I select all, then go to Select|Modify, and all choices are grayed out other than border. This is an 8 bit RGB image. The layer is selected. I also tried flattening it. I also tried creating a new image, RGB 8 bit depth. Also 16 bit. Nothing works.
 
I double checked CS3 and this works in CS3, but not CS5.

View 5 Replies


ADVERTISEMENT

Photoshop :: Modify Choices Are Grayed Out?

Feb 5, 2013

Suddenly I can not longer choose expand, contract, smooth or feather under modify, only border.

View 15 Replies View Related

Photoshop :: CS5 / Select -> Modify -> Contract Grayed Out

Jun 6, 2012

Mac OSX 10.7
PS CS5
 
The problem is that after using my select all, or using the marquee tool (tried both ways) to draw the selection my contract option is still grayed out it (like most everyone else has said). Only difference is, it was WORKING fine 30 min ago, I've used it many times while working on numerous documents and now all of the sudden it wont work on anything. I havn't made any changes to any prefs, but maybe I hit a hotkey and locked something? I remember when my define pattern was grayed out, I read a post where I clicked one simple option and voila it was back to normal...something with a spacebar shortcut I think?

View 2 Replies View Related

Photoshop :: CS6 Edit Commands Grayed Out To Copy / Cut Objects And Layers?

Mar 27, 2013

Why are my edit commands (copy and cut) grayed out / unavailable? When trying to copy a selected layer or object, all my editing commands are grayed out and unavailable. Even if I convert something to a smart object, no joy. The only thing I seem to be able to select and copy/cut/paste is text in the text edit mode. makes no sense and is rendering PS unusable.

View 5 Replies View Related

AutoCAD VB :: String Extraction / Modify Commands Using VB?

Sep 3, 2013

I want to extract 3 different variable strings based on one large string such as:

"2013_ARCH-Lev01.dwg"       <or "2014_STRC-Lev00-BM">

and the 3 variables are:

Dim YEAR As String
Dim TRADE As String
Dim LEVEL As String
YEAR = 2013                           <or 2014>
TRADE = ARCH                        <or STRC>
LEVEL = 01                              <or 00-BM>

I was thinking of using the first four digits "(0,1,2,3)" for YEAR?

using the next four digits following the underscore "_(0,1,2,3)" for TRADE?

using the rest of the digits following the dash "-(unknown)" for LEVEL?

View 1 Replies View Related

AutoCAD 2010 :: Modify Commands Make Objects Choppy

Mar 30, 2012

When i'm using the modify commands, the objects that I'm modifying become choppy, and when I zoom in and out with the third button/wheel, the movement of the zoom isn't fluid like it normally is, also It is extremely hard to grab an osnap during this process.

View 2 Replies View Related

Photoshop Elements :: How To Modify A Selection

Mar 6, 2013

We need to know how to make a retangle, bend the lines and fill with color (dancing ants). If this product cannot do it whst will? Can I get a reduced price since I purchaed Adobe element 10?

View 5 Replies View Related

Photoshop :: Save Actions Selection Grayed Out

Mar 2, 2012

I'm wanting to know how to fix this issue? Each time I create actions it has the "Save Actions" selection grayed out. So every time photoshop decides to have a fit and kill on itself all my actions are wiped out then I have to recreate them, rinse and repeat.

View 2 Replies View Related

Photoshop :: Modify Selection Without Moving The Image?

Nov 24, 2011

When selecting an area I would like to modify/transform/reshape just that selection (the marching ants) without moving the underlying image.How do I do that?

View 9 Replies View Related

Photoshop Elements :: Define Brush Selection Is Grayed Out

Jun 10, 2013

I've purchased word art .png files and I'm trying to save them as brushes.  When selecting Edit, the Define Brush Selection is grayed out. 

View 3 Replies View Related

Photoshop :: Modify Selection That Has Become Part Of Layer Mask?

Jun 11, 2012

How can I modify a selection that has become part of a layer mask?  I want to refine the edge of a mask.  Windows 7, PS CS 5.

View 2 Replies View Related

Photoshop :: Feather, Modify, Grow, Transform Selection Disabled

Dec 24, 2005

I have a edu version of Adobe creative suite CS2. I tried to learn some text effects in online turtorial but I found that feather, modify, grow, similar, transform selection submenu are disabled in the select main menu. I would like to know why and how to make them enable.

View 2 Replies View Related

AutoCAD 2013 :: Selection Commands Not Working

May 8, 2012

I am having problems with the selection commands,

Ctrl + A

Deselect all as they seem to be unknown commands? (Quick select in properties does work) I have loaded my own profile (but have used the default profile aswell to check, still no joy)

View 4 Replies View Related

Illustrator :: Can't Modify Selection That Says Mixed Appearance

May 24, 2013

In older versions of Illustrator, I used to be able to make a selection of multiple objects and give them a stroke or other attribute. Now it says “Mixed Appearance” and I can't do anything to the selection. How do I modify a multi-selection if it says “Mixed Appearance?”

View 3 Replies View Related

3ds Max :: Assign Keyboard Shortcuts For Different Selection Sets Functions / Commands?

Oct 10, 2012

I am trying to find a way to assign keyboard shortcuts for different selection sets functions/commands.

I failed to find selection set commands in customize user interface menu. seems that they named it in a manner so that people cant find them when they simply look for "selection" or "set" or "create selection set" or "make selection set" .

what I need is:

1. when I select a group of objects I want to make them a selection set with one keyboard shortcut. (to go to the sets menu window and press that "create a selection set" button is too time consuming. I am also aware that just writing a letter to the selection sets dialog creates a set but still I want that shortcut.)

2.select an object and immediately jump to the whole selection set with a keyboard shortcut. or toggle through selection sets.

3.delete the active selection set with one keyboard shortcut.

are these functions available as native commands in customize user interface?should I go looking for a maxscript ?

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Modify Existing Selection Set?

Sep 5, 2012

I need the same funcionality as in code below, but without using "command".

The main idea is alowed user to modify Existing Selection Set.

 (defun gt:ss->lst (a:ss / i lst ) ;_ / (setq i 0) (if a:ss (progn (repeat (sslength a:ss) (setq lst (cons (ssname a:ss i) lst) i (1+ i) ) ;_ setq ) ;_ repeat (reverse lst) ) ;_ progn ) ;_ if) ;_ defun gt:ss->lst(defun gt:ss_modify (a:en-lst / ) ;_ / ;;create Selection set (setq ss2 (ssadd)) (foreach f:en a:en-lst (ssadd f:en ss2) ) ;_ foreach ;;Run command and fill with initial content (command "_select" ss2) ;;Alow the user to modify the contents (while (/= (getvar "cmdnames") "") (command pause) ) ;_ while ;;get back the list of enames from modified selection set (setq ss3 (ssget "_P")) (setq ss3-lst (gt:ss->lst ss3))) ;_ defun gt:ss_modify(defun tst:gt:ss_modify ( / ) ;_ / (gt:ss_modify (gt:ss->lst (ssget)))) ;_ defum tst:gt:ss_modify

View 8 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Modify Objects Copied From A Selection Set?

Nov 17, 2011

I am creating a selection set using ssget...

Then I copy that selection set multiple times in a loop.  What I would like to do is then rotate (or otherwise modify) the last copied group of items.  If I rotate "last" it will only accept the last drawn item, so only one item in the group of copied objects will rotate.

Here is the portion of simple code I am using right now (it's in a loop so all variables with 'Next' are changing each time):

(command "_.copy" SS1 "" SS1Base NextPT)
(command "_.Rotate" "l" "" NextPT NextAng)

This works fine with a single object, but I can't figure out how to call up the entire group of objects.

Civil 3D 2011
Windows 7 x64

View 6 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 :: 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

Photoshop :: Pasted Selection In CS6 Using Marquee Selection?

Aug 18, 2012

When I pasted a selection made with the Marquee tool there is a transform grid around the pasted selection.  I use a MAC and Photoshop CS6 and would like to deactive a feature for this automatic grid, if there is one. 

View 3 Replies View Related

Photoshop :: CS6 / Using 3D Commands On MacBook Pro?

Sep 1, 2012

i have installed the photoshop cs6 extended version on my macbook pro 2.26ghz Intel core 2 Duo, 4GB ram, but doesn't appear the 3D commands on it.

View 10 Replies View Related

Photoshop :: Mac Overrides Key Commands

Aug 10, 2012

Mac Pro 3.1, 16-GB Ram, OS 10.6.8, CS6 Extended
 
I notice that recently hitting Key Commands in Photoshop like Command-M  minimizes my open window to the dock instead of opening Curves? This used to work. The Keyboard Shortcuts as set in Photoshop correctly, but it is ignoring them and using the Finder shortcut instead?

View 23 Replies View Related

Photoshop :: List Of Key Commands Out There?

Apr 15, 2004

I'm looking for a list that describes the various key commands Photoshop employs. You know, like "V" is for the Move Tool, "L" is for the Lasso Tool, etc.

View 1 Replies View Related

Photoshop :: Can't Use Key Commands To Set Points In Curves CS6

May 12, 2013

Is there some way to use the command or option key to set control points within curves. Have to activate the little hand to get to do this. I could use the command key with click to set points I was sampling within image in previous 2 versions. Now have to use the hand, and it's to wiggy. Any thing I haven't seen to use commands?

View 7 Replies View Related

Photoshop :: Keyboard Commands Unavailable

Dec 14, 2003

i must have changed somethin in the settings, and

most of the keyboard commands wont work now.

( bad commands; cntrl+N, cntrl+T, etc., all that require "cntrl" )

View 2 Replies View Related

Photoshop :: Equivalent PS Commands To Defringe All...

Feb 7, 2009

Is there an equivalent set of straight up Photoshop commands to perform the Lens Corrections>Defringe>All Edges in Camera Raw?

View 3 Replies View Related







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