Photoshop :: Program Error When Trying To Use Effect Within Layers Palette

Jan 24, 2013

When I am trying to use the effect options with in the layers palette I get the annoying message:
 
' Could not complete your request because of a program error. '
 
It was working fine then it went funny. I have restarted photoshop, my machine and re-installed the software but stiill not fix.

View 2 Replies


ADVERTISEMENT

Photoshop :: Copy Linked Layers In Layers Palette Without Maintaining Links To Originals

Sep 30, 2013

I often will copy a layer in the layers palette via option drag. If the original layer is linked to another, the new layer is also linked to the orginal layer I copied as well as any other layers that original was linked to.
 
Is there anyway to option drag to copy a layer in the layers palette without the new layer being linked?

View 3 Replies View Related

CorelDRAW Graphics Suite X5 :: Program Stops - Appears Box That Says Run Time Error And Close Program

Jul 31, 2011

When I'm gonna write my program stops and appears a box that says Run time error and close my program. What is that, what I coul do?

View 1 Replies View Related

Photoshop Elements :: How To See All Layers In Layers Palette

Feb 15, 2013

why don't I see all the layers in the Layers palette

View 2 Replies View Related

Photoshop :: Error Selection Tool :: Could Not Complete Your Request Because Of A Program Error

Feb 25, 2009

When I use the quick selection tool (or when I use content-aware scaling) I get an error message saying "could not complete your request because of a program error." I am working with NEF files, 4 GB of RAM, fast machine with plenty of scratch space, Radeon X1950 crossfire graphics card. With small .jpg files, the problem doesn't occur.

View 4 Replies View Related

Photoshop Elements :: 9 Error Message - Cannot Use Clone Stamp Due To Program Error

Jan 6, 2013

In Elements 9 I now get an error message "Cannot use Clone Stamp due to program error".

View 1 Replies View Related

Photoshop :: Error :: Could Not Complete The Clouds Command Because Of Program Error

Feb 10, 2009

I tried using the cloud tool and I got this error:

"Could not complete the clouds command because of program error."

I tried resetting the computer and still nothing.

View 2 Replies View Related

Photoshop :: Error :: Could Not Complete Request Because Of A Program Error

Jun 14, 2006

I'm getting the error "Could not complete request because of a program error" when I try to Save for web. Never had this problem before.

Any ideas?

PS CS2
Mac OS 10.3.9
Power Mac G4 Dual 500
1.3 GB Ram

Thanks,
-- Rick

BugDreams.com

View 9 Replies View Related

Photoshop :: Error :: File Will Not Open Due To A Program Error

Apr 1, 2009

I have been re-saving many of my PSD files using CS3 image prosesssor with compatibility mode turned off. They have simply been saved again as PSD files into a different folder - no changes to the original PSD files. This has worked well and reduced file sizes by up to 50% (I had compatibility mode turned on previously).

of the 60 files I have processed, 3 will no longer open , I get a message that says "file will not open due to a program error."

these files have only ever been used in CS3. , they are quite large
from just under 1GB to 1.5GB, however other similar large files have processed successfully. I have re-tried without success.

I still have the original files so no data loss is involved.

View 5 Replies View Related

Illustrator :: How To Keep Layers From Auto-expanding In Layers Palette

Jun 21, 2013

I'm working on a rather complex piece of artwork in Illustrator CC with the latest Mac OS, with several objects on each layer.
 
Whenever I click an object, its layer in the Layers palette auto-expands, pushing all of the main layers off of the edge of the palette. I then have to click the little arrow to collapse the layer so I can see all of the other layers and (quickly?) get to the one I need.
 
I am using a Magic Trackpad (don't ask) so this task is particularly arduous, as the cursor is often somewhat difficult to maneuver when attempting to target small UI elements. My display height is only 1050 px, so naturally I would rather not make the layer thumbnails any smaller (25 px.)
 
Is it possible to disable or defeat the auto-expanding behavior? Placed in bold

View 2 Replies View Related

AutoCAD .NET :: Simple Program To Gather Layers And Change To Different Layers

Jul 23, 2013

I am just starting to learn C# and .NET and I am trying to write a simple program to gather all the layers from a drawing in a directory, save them to a list, and use that list to change those layers to the appropriate layers. The way I want it to iterate is open the first drawing, gather the layers, ask the user which layer they want to change the original layer to, and when they select the new layer, it associates that old layer with the new layer so that in the future it won't prompt the user, it will just change it to that layer. Then it changes the layers and goes to the next drawing.

I wrote something very simple in LISP, but I need to make it more advanced and try to add in more features. Specifically I would like to be able to do everything in the background, without actually opening the drawings so I can avoid any user prompts or dialogue boxes.

I am at a complete loss at where to start though. There are so many members in the different namespaces for Autocad. Right now I am looking through acdbmgd.dll and acmgd.dll to try and find something useful, but I have no idea where to even start.

My guess would be to first define a method that gathers the layers from the drawing and saves them to an array. For example i would have multiple arrays for the different layers to which I want to convert the old layers, string [] 0layer, string [] walllayer that contains all of the layers to be changed to layer 0 and wall layer. Then I would compare the layers in the drawing to those arrays, if they are not present in any of the arrays, the program would prompt the user and ask which layers they want to change the existing layer to and add it to the appropriate drawing. Then all of the layers in those arrays would be changed to the different new layers.

At the very least, I am going to start making the different arrays to be filled. That much I can do. I'm just having trouble actually getting the data from the drawings.

View 2 Replies View Related

AutoCAD .NET :: Create A Custom Palette That Will Load Whenever Program Loads

Feb 12, 2013

I am trying to create a custom palette that will load whenever Autocad loads.  The code below works with one exception.

  <CommandMethod("gtPalette")> _ Public Sub DoIt() If m_ps = Nothing Then Dim MYGuid As Guid = New Guid("{4AECF36F-C7E9-4C59-B72B-36A98DDA1D24}") m_ps = New Autodesk.AutoCAD.Windows.PaletteSet("gtPalette", MYGuid) myCoordPalette = New UserControl1() m_ps.Add("Coordinate List", myCoordPalette) End If m_ps.Visible = True End Sub

 The problem is that my Palette title is now "gtPalette"  which I do not want.  However if I change 
 
PaletteSet("gtPalette", MYGuid)
to 
PaletteSet("GunTech Cogo", MYGuid)

Then what occurs is that when Acad (actually I'm using Civil 3D 2012) start it trys to execute a command called 'GunTech' and then one called "cogo'.  Cogo being a valid Civil 3d Command brings up the Cogo dialog.  If I then type the command gtPalette it appears in the correct location.

Currently on my development PC the first code works perfect and brings up a palette that even has the correct title of "GunTech Cogo".  this info has presumable been saved with the GUID in my previous attempts to get the code to work.  

View 2 Replies View Related

Photoshop :: Looks Of The Layers Palette

Jan 28, 2006

with the layers palette and I just can't figure out how to make my preferred state default.

This first image shows how the layers are at default:

Then, after duplicating all layers to a new file, they're shown as this (which is how I prefer it):

View 6 Replies View Related

Photoshop :: Layers Palette Greyed Out

Jun 18, 2012

I just upgraded from MacOSX 10.5.8 to 10.6 and using Photoshop CS4.Not sure if this is related to what happened today, but...
 
"About Photoshop" is greyed out. Can't tell what version I have. I need to duplicate a layer in a high res RGB image. The LAYER, CHANNELS, PATH palettes have all options greyed out, except "convert to smart object", which I don't know yet what that is. The image is in 8 bits/channel.

View 25 Replies View Related

Photoshop :: Layers Palette Not Working?

Jul 12, 2012

when i select paths in pen tool. the layers palette is not working only paths palette is working layers palette gets locked.i m using photoshop cs 6.

View 20 Replies View Related

Photoshop :: Why's Layers Palette Minimized

May 3, 2012

Lately whenever I first start CS5 my Layers palette is minimized. It just started doing this yesterday. It never used to do that and I can't think of anything I did that would have caused that. I tried Reset Essentials. That fixes it while I have PS open, but next time I start it up the Layers palette is minimized again.

View 2 Replies View Related

Photoshop :: CS6 - Making PDF Plus Layers Palette

May 29, 2013

in CS6 13.0.4 x 64, the PDF process is iffy for me. Sometimes it's fine. But other times, an incomplete image results. Is this related to the overall type bugginess that Adobe recommends we fix (which I've not yet done)...?

[URL]....
 
I'm lazy, but also, I don't have a lot of confidence I'll do it correctly, and I have a myriad of deadlines every week.
 
While I've your eye, here's another question relating to the layers palette:
 
Layers sometimes stick to my curser and I can't unstick them until I go back to the palette and try to place them back where they orignally were. (I'll be really embarrassed if this is a new feature of CS6 that I've not figured out yet...)

View 2 Replies View Related

Photoshop :: How Do I Find The Layers Palette

Mar 25, 2008

I accidentally closed my layers palette and I have no idea where to find it!

how to get it to show up again?

View 2 Replies View Related

Photoshop :: CS4 Layers Palette Too Wide

Oct 19, 2008

The Photoshop CS4 layers palette is too wide and distorts the layout of the default color swatches palette when docked on the same column. And I don't want to have to put the color swatches palette anywhere else but the same column. Can the layers palette be fixed so that it can be as narrow as the other palettes, so it won't cause a conflict with the swatches layout?

View 15 Replies View Related

Photoshop Elements :: Where Is The Layers Palette

Sep 24, 2012

I'm using Photoshop Elem. 10 with windows 7. I'm trying to use the full edit, but cannot find the layers pallet. How do I retrieve it?

View 3 Replies View Related

Photoshop :: Get Two Different Photos Into Layers Palette Without Having To Go Through Bridge?

Sep 2, 2012

get two different photos into layers palette without having to go through Bridge?I don't want them merged.

View 11 Replies View Related

Photoshop :: Jerky Pointer Over Layers Palette

Nov 27, 2012

My pointer gets very jerky whenever I'm using the Layers palette in Photoshop CS6. This is never happened in previous versions (although I skipped CS5).

View 14 Replies View Related

Photoshop :: CS6 Info Palette And Adjustment Layers

Jan 15, 2013

When I am using adjustment layers in PS 13.0.3 (mountain lion), I notice that the info palette is not giving me a before and after readout of the adjustment.e.g. I add a curves adjustment layer and remove some cyan from the highlight end, I can see on screen that cyan is removed but the info palette gives me 2 readings, both the same. This can make it difficult if I want to remove an exact amount of colour. I have the info palette is set up the same as every previous version of photoshop I have used, 1st reading actual colour, 2nd reading cmyk. I know this is a bit difficult to explain so I have included an image showing the palette, CS6 on the left and CS5 on the right, same image, same coordinates. CS5 is showing that 4% cyan has been removed, was 18% now 14%, CS6 is showing what it is now.
 
I work in prepress and do a lot of colour correction for books and magazines so I need to know the before & after readings. Is this a bug/feature??

View 12 Replies View Related

Photoshop :: Use The Create A New Set Option At The Layers Palette And What Is It For?

Jul 5, 2007

I've been working with photoshop for a couple of years now but I'm not a pro.
Does anyone know how to use the "Create a new set" option at the Layers Palette and what is it for?

View 7 Replies View Related

Photoshop :: Layers Palette Wont Show

Jan 26, 2006

Layers palette won't show up..

View 2 Replies View Related

Photoshop Elements :: Put Photos In Layers Palette So Can Put One Over Other?

Mar 17, 2013

How can I take 3 photos that are in the project bin and place them in levels so that I can use portions of each photo, and layer them?

View 1 Replies View Related

Photoshop :: Contents Of Group Not Showing In Layers Palette Sometimes?

Aug 21, 2013

I have a group called "grey button" with a text layer ("ok, got it") and a shape layer ("large grey") within in it. Sometimes the two elements within the group show up in the layers palette, sometimes they don't. Sometimes when I click the drop down for the group folder, it looks to be open but nothing shows beneath it. Sometimes when I can get the items within the group folder to show beneath the folder, then close the dropdown, the folder looks closed but the elements are still showing beneath it. 

View 5 Replies View Related

Photoshop :: CS3 Program Error

May 19, 2009

I'm using cs3 on a WinXP computer and over the last few days I'm all of a sudden getting a pop-up box stating that a (some tool) could not be used because of a program error. Does anyone know what this is all about and have any ideas on how I can fix it? I've restarted PS and rebooted several times and that does not help. 

View 8 Replies View Related

Photoshop :: Program Error

Jul 17, 2008

I have Adobe Photoshop CS2 and today when I tried to use some actions on my photo a pop-up came up saying the request cannot be made because of a program error? Has this happened to anyone before and how can I fix it? It would stop the action like halfway and not continue.

View 3 Replies View Related

Photoshop :: CS4 Program Error

Jul 2, 2009

tried to open the following image formats this morning...bmp., tga, exr and everytime photoshop would give me this error" could not complete request because of program error" and when I checked the open dialog box those formats were not in the list.

View 3 Replies View Related

Photoshop :: How To Change Color Of Selected Layer In Layers Palette

Dec 11, 2012

how to change the colour of the selected layer in the layers pallete? It's quite annoying the way it is (Dull grey/blue) and sometimes hard to see what layer's selected?
 
I prefer the brighter blue on my other computer!

View 2 Replies View Related







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