Problem with Photoshop CC

Can´t start Photoshop CC. I got the message "Can´t initialize photoshop, becaus there was a program error".

Hallo Noel,
thank you for your answer. You are right - to less information.
I have an iMac with OSX 10.9.1 - I think the latest update.
I think the problem resulsts from a trail-installation of PS CS6. I had CS6 installed in a 30-days trial version. Than I bought a prepaid-card(1-year-licence) for photoshop CC. I aktivated PS CC and erverything was alright until I tried to Start PS cc. I got the message "Can`t initialize photoshop,because ther was a programm error". But I can start PS CS6. I tried erverything I think. I deinstalled PS CS6 and installed CC new but always the same problem. PS CS6 works perfect, but I can´t start PS CC. Maybe it´s a licence-problem. I always got the fewedback, that I registered PS CC but it don´t work.
I tried to delete the current preferences. It´s ok to come to this function, but the result is always the same message.
Thank you for your help
-Frank

Similar Messages

  • Problem with Photoshop CS4 after migration to new Mac

    I just migrated from an old Mac to a new Macbook Pro running Mavericks. I'm having a problem with Photoshop CS4. Specifically, two things:
    1) When I open an image in Camera Raw, I get this error:
    Fatal error - missing component
    /Library/Application Support/Adobe/Adobe Version Cue CS4/Client/4.0.0/VersionCue.framework
    2) When I try to save anything, it tells me it can't because of a program error.
    I've looked around for a solution. Apparently I had to install Java, but that hasn't solved the issue. A couple of people mentioned that reinstalling would work for a similar problem. My problem with that is that my disk is on the other side of the world and my new macbook doesn't have a disk drive anyway. So I logged into my Adobe account hoping to see a download link for software I have licences for, but there isn't one.
    So my question is firstly, whether there is a simpler solution to the errors I am getting and, if not, if there's a solution to reinstalling Photoshop CS4 without the disk.
    Thanks!

    Did you use Apple's migration tool?  It misses a lot of support files, especially in the Application Support directories.
    You'll have to copy those files manually, or reinstall the app.

  • Problem with Photoshop CS6. If I open a file using Camera RAW

    I have a new problem with Photoshop CS6.  If I open a file using Camera RAW, and process it as usual, CS6 doesn't want to save it the way it used to.  I don't know if I changed something by accident or not. 
    Here's what happens now: After opening from ACR to CS6 and completinhg all of my work, I choose "Save as..."  The save as window opens showing the file name and format.  The default format seems to be .PSD.  I use the drop down to select .jpg.  The file saves normally as a .jpg.  When I go to close the image from, I get a new prompt asking, "Save changes to Adobe Photoshop document DSC_xxxx.NEF before closing?
    I looked up at the file name in the bar above the work space and noticed that it does NOT change from "DSC_xxxx.NEF" to "DSC_xxxx.jpg" after I have saved the file as a .jpg,in my webesite  but it always used to do that.  This adds a few extra steps when closing a document and it really slows me down.
    In fact, I wouldn't swear to this, but I think it used to save to .jpg by default, without me specifying this.
    I don't see a setting in the preferences for what to use as the default file format for saving, so I don't know where to change it back.
    Any ideas?
    Thanks in advance

    You are in the wrong forum;  You actually need Photoshop forum at this link:
    <http://forums.adobe.com/community/photoshop?view=discussions>
    Hope you can repost your question at the correct link.

  • Problems with Photoshop CS2 I originally purchased this software several years ago. At time I was running Microsoft Windows XP. This computer recently was replaced with  a Dell running Windows 8.I reloaded my CS2 on this computer & it ran fine with a few

    Problems with Photoshop CS2
    I originally purchased this software several years ago. At time I was running Microsoft Windows XP.
    This computer recently was replaced with a Dell running Windows 8.I reloaded my CS2 on this computer & it ran fine with a few exceptions as follows;
    when the software comes up initially I get a message that says “could not complete your request because of program error”. Hitting OK allows me to continue using the software .
    When I try to activate a function using CTLR or ALT keys I get this message “required application failed to load and the product cannot continue. Please reinstall the application”. This causes the application to abort.
    Reloading my CS2 continues to generate the same messages when I depress the CTLR or ALT keys.

    Your original copy is obsolete and Adobe is offering a free replacement you are entitled to. Download and use that and that should clear it up for you.
    https://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.ht ml
    Download this copy of CS2 and use the serial number provided next to the download link.

  • Help with add file name problem with Photoshop CS4

    Frustrating problem: Help with add file name problem with Photoshop CS4. What happens is this. When I am in PS CS4 or CS3 and run the following script it runs fine. When I am in Bridge and go to tools/photoshop/batch and run the same script it runs until it wants interaction with preference.rulerunits. How do I get it to quit doing this so I can run in batch mode? Any help is appreciated. HLower
    Script follows:
    // this script is another variation of the script addTimeStamp.js that is installed with PS7
    //Check if a document is open
    if ( documents.length > 0 )
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.INCHES;
    try
    var docRef = activeDocument;
    // Create a text layer at the front
    var myLayerRef = docRef.artLayers.add();
    myLayerRef.kind = LayerKind.TEXT;
    myLayerRef.name = "Filename";
    var myTextRef = myLayerRef.textItem;
    //Set your parameters below this line
    //If you wish to show the file extension, change the n to y in the line below, if not use n.
    var ShowExtension = "n";
    // Insert any text to appear before the filename, such as your name and copyright info between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextBefore = "Lower© ";
    // Insert any text to appear after the filename between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextAfter = " ";
    // Set font size in Points
    myTextRef.size = 10;
    //Set font - use GetFontName.jsx to get exact name
    myTextRef.font = "Arial";
    //Set text colour in RGB values
    var newColor = new SolidColor();
    newColor.rgb.red = 0;
    newColor.rgb.green = 0;
    newColor.rgb.blue = 0;
    myTextRef.color = newColor;
    // Set the position of the text - percentages from left first, then from top.
    myTextRef.position = new Array( 10, 99);
    // Set the Blend Mode of the Text Layer. The name must be in CAPITALS - ie change NORMAL to DIFFERENCE.
    myLayerRef.blendMode = BlendMode.NORMAL;
    // select opacity in percentage
    myLayerRef.opacity = 100;
    // The following code strips the extension and writes tha text layer. fname = file name only
    di=(docRef.name).indexOf(".");
    fname = (docRef.name).substr(0, di);
    //use extension if set
    if ( ShowExtension == "y" )
    fname = docRef.name
    myTextRef.contents = TextBefore + " " + fname + " " + TextAfter;
    catch( e )
    // An error occurred. Restore ruler units, then propagate the error back
    // to the user
    preferences.rulerUnits = originalRulerUnits;
    throw e;
    // Everything went Ok. Restore ruler units
    preferences.rulerUnits = originalRulerUnits;
    else
    alert( "You must have a document open to add the filename!" );

    you might want to try the scripting forum howard:
    http://www.adobeforums.com/webx?13@@.ef7f2cb

  • Problem with photoshop on my mac

    Hey...
    I have some problem with photoshop on my mac...
    When i open the photoshop my screen change his color...
    The screen changes such delicate blue color.
    and when i close the app the color has back to the original color.
    photoshop cs 6 (master collection)
    macbook pro 15"
    OS X Mountain Lion
    2.3 i7
    4 giga ram
    Have a nice day

    Not sure which screen you mean, but maybe your seeing the Application Frame in photoshop cs6.
    You can turn that off in photoshop cs6 under Window>Application Frame.
    If that's not it, could you post a screenshot?

  • Problem with photoshop CS6 I have an imac intel 10.6.8...when I try to launch photoshop the icon bounces a few times then the adobe app manager tries to open then they both quit. they keep doing this over and over again but won't launch. worked fine for a

    problem with photoshop CS6 I have an imac intel 10.6.8...when I try to launch photoshop the icon bounces a few times then the adobe app manager tries to open then they both quit. they keep doing this over and over again but won't launch. worked fine for a few days after install.

    problem with photoshop CS6 I have an imac intel 10.6.8...when I try to launch photoshop the icon bounces a few times then the adobe app manager tries to open then they both quit. they keep doing this over and over again but won't launch. worked fine for a few days after install.

  • We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    Sounds like it's a problem with the Acrobat settings. Did you set them to the same resolution?

  • Problem with Photoshop Elements Printing

    I have been using Photoshop Elements for a couple of years now and know it pretty well.  Today while attempting to print, a strange problem came up:  After going through the protocol to make a print, just before the image prints PE does a very fast auto correction that basically ruins all the color correction I have made on the image.  How do I disable this function?

    Hi and thanks for your reply. I checked the settings under "Print", "More Options", then "Color Management" and it only has "Print Space", none of the three options that you said I should have.  Am I looking in the wrong place?
    Date: Mon, 3 Sep 2012 11:14:57 -0600
    From: [email protected]
    To: [email protected]
    Subject: Problem with Photoshop Elements Printing
        Re: Problem with Photoshop Elements Printing
        created by 99jon in Photoshop Elements - View the full discussion
      Check your color management by clicking More Options in the print dialog There are basically three options:1) Printer Manages Color2) Elements Manages color3) No color Management Make sure everything is consistent e.g. if you choose Elements manages color make sure color management is switched off in the print driver. 
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4669848#4669848
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4669848#4669848. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Elements by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Y have problems with Photoshop Elements 12  Bug after reinstallation complet  Impossible working ??

    Morning !
    We have many problems with PHOTOSHOP ELEMENTS 12 ?
    After installation on MAC OS X   YOSEMITE  .
    S O S !!

    Exporter vers photoshop do you receive any specific error messages?  In what way is Photoshop Elements 12 not working?

  • Problems with Photoshop Elements 11

    I have a problem with Photoshop Elements 11, which i bought last week. Installing was completed according the instructions. When I started to use the program my one year old HP-computer with Windows 8.1 informed that there a failure in the Photoshop program and the did not open.

    attach a screenshot of the error message.

  • Problems with Photoshop CS5.1

    Hello everyone, I'm having some problems with Photoshop, it simply doesn't work as it should. When trying to resize the brush, the cursor changes shape and if I click, it won't, for example, paint where the cursor is pointing at, but about two inches diagonally. Then, the liquify tool freezes and I have to zoom in/out in order to make it work again, the brush disappears when changing the size, and again the cursor changes into something else and doesn't make any adjustment to where it's pointing at, but to a lower section. It's annoying to keep working like this! According to the update manager, everything is up to date. My current OS is Lion 10.7.2. Does anybody know how to fix this or at least why it is happening? I asked in the Adobe forums and I was told that it was Apple's fault (obvious response haha), and that a software update should come up to fix this driver problem or something. I'm not sure of what this is but I can't work like this. Thank you in advance.

    What it means is Adobe is feverishly working on a solution.  Apple has no control over Adobe's products.  They may make spec changes to allow for better support of other data formats, and the GUI, and security of the operating system, and Adobe is always in the loop on http://developer.apple.com/  If they can't make Lion work with their software, it is partly due to the immense size of their software and not being able to modify such software without significant error checking, and partly due to possible changes that Apple may have made.  One should never upgrade a production environment until one knows all one's software is compatible for all one's needs.  Having a test machine, or a test hard drive to see if an upgrade works is probably best until migrating an entire environment to a new system.  And always backup your data prior to upgrading.  A clone backup offers the quickest recovery time.  Carbon Copy Cloner is a great solution for external hard drives, and so is Superduper.

  • Little problem with Photoshop ....

    Hi. I have a little problem with photoshop CS 4. I use a color replacement tool to change a color in some details... but when i set new color, on pictures entries only or grey or black colors and nothing other... i dont known why.... please help . Thanks. Sorry for bad english

    Usually the Color mode is the one you want for the color replacement tool, you
    might have it set to luminosity or your trying replace black or white colors.
    MTSTUNER

  • Hello I have encounted a problem with Photoshop. Normally when you start a new documant, you are given the options to have A4, A3, ect page set ups. These inbuilt page set ups seem to have disapeared, does anyone please know how to fix this? Many thanks

    Hello I have encounted a problem with Photoshop. Normally when you start a new documant, you are given the options to have A4, A3, ect page set ups. These inbuilt page set ups seem to have disapeared, does anyone please know how to fix this? Many thanks Ben  [email protected]

    Hello Trevor
    Thanks for your message. You can custom set pages but there are no preset of page sizes like A4, A3, ect. I cannot click the size preference, nothing comes up
    Ben

  • I recently upgraded our iMac to Yosemite OS and now have a problem with Photoshop Elements 11:  the move tool selects an image or text layer, but then I try to drag the selection somewhere else on the page and it snaps back to the original location, howev

    I recently upgraded our iMac to Yosemite OS and now have a problem with Photoshop Elements 11:  the move tool selects an image or text layer, but then I try to drag the selection somewhere else on the page and it snaps back to the original location, however the arrows will move it OK.  Also I cannot drag the selection to another photo in the photo bin as before.

    Hi,
    Please refer: http://helpx.adobe.com/photoshop-elements/kb/pse-stops-responding-yosemite.html
    Thanks,
    Anwesha

  • I have a problem with Photoshop CC.

    Hello. I have a problem with Photoshop CC.  I pay a monthly subscription and download the program but after installation system asks again pay for a subscription. What should I do in this situation?

    Sign in, activation, or connection errors | CC, CS6, CS5.5
    Mylenium

Maybe you are looking for

  • ICal Graphical Bug?

    hello all (my first post), http://homepage.mac.com/nickbaines/PhotoAlbum1.html the above is a screenshot of my desktop. the strange box you can see is the same size of the info pane of whichever task/calendar entry i am currently editing in ical. it

  • Ability to make external wireless?

    I have a macbook pro and I have all my iTunes music on an external hard drive so as not to use up all my macbook storage space. However, it kind of defeats the point of having a labtop if I have to keep it wired down all the time. If I get an airport

  • Online Archive - Deleted Items Folder

    Hello, I have setup retention policy and tags.  It seems to be working okay, almost.  A default retention tag applies which archives items after one year.  This seems to be working ok for folders such as inbox, and sent.  However, it does not seem to

  • Error when save ERD diagram -an unnamed file contains invalid path

    Hello, When I try to save diagram I receive message "an unnamed file contains invalid path". Objects added to diagram are saved to repository but diagram is not... I'm using Designer 10g on Windows Server 2003

  • AEBS and internet connection errors and dns errors.

    AEBS 7.3.2 It was running fine until I turned on my mybook one day like I had done several times before. I received an error regarding a disk error with it. I could not find any problems though. But since then my AEBS has been having difficulty conne