Photoshop CS5 lens parameters online-search.

Today I installed the trialversion of photoshop CS5, to search lens  parameters via the online-search.
But it doesn´t work.
The  field "online-search" in filters/lenscorrections is only grey, I can´t  click it.
Where is the mistake? Perhaps in the trialversion not  available?
Best Regards,  Daniel

Ubertin wrote:
The  field "online-search" in filters/lenscorrections is only grey, I can´t  click it.
Do you have an image opened into Photoshop CS5 that was taken with the specific lens you want to search for? That's the only way to search...

Similar Messages

  • Photoshop CS5 shortcut problems after panel has been executed

    Hi,
    I have a problem with Photoshop panels.
    After executing a panel keyboard shortcuts stop functioning, especially copy/paste.
    My panels are simple one-button panels that call a bunch of Javascript functions.
    I tested it with a simple "create new file", with a more complicated Export panel and with the sample Colorpicker panel that is shipped with the SDK.
    After activating them the keyboard shortcuts do not work anymore.
    I am using Photoshop CS5 64Bit.
    I searched through the forums and it seems two other users had a similar problem without ever getting an answer, but I do not know where to ask if not here.
    The other two threads are these:
    http://forums.adobe.com/message/4020737#4020737
    http://forums.adobe.com/thread/744774?tstart=0
    Thanks for your help,
    Cheers,
    Malte

    Yes, basically we have all the default fonts installed on our computers, but we use a program called Universal Type Client to get the fonts we need, and UTC grabs fonts from a server and temporarily makes them usable on our computer. But everyone has this software so I dont think that would have anything to do with it.
    Could it possibly have something to do with my Video Drivers or Graphic Cards? Our tech guy mentioned it was strange that my computer had two different things (I believe he said I have a CORE i7 vPro and Nvidia NVS 5200M or something and that they may be competing?) or the amount of monitors Im using?

  • I installed Elements 12 because my version of Photoshop (CS5.1) is not compatible with Yosemite. Now the Adobe Application Manager will not search for updates for any of the programs in CS5.5 that I have. How do I fix this?

    I installed Elements 12 because my version of Photoshop (CS5.1) is not compatible with Yosemite. Now the Adobe Application Manager will not search for updates for any of the programs in CS5.5 that I have. How do I fix this?

    '''Except 8.0.x version also supported version is 3.6.24 '''you can find it here:
    http://www.mozilla.org/en-US/firefox/all-older.html
    check the system requirements:
    http://www.mozilla.org/en-US/firefox/3.6.24/system-requirements/
    see also:
    [https://support.mozilla.com/en-US/kb/Installing%20a%20previous%20version%20of%20Firefox Installing a previous version of Firefox]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • Photoshop CS5 is a failure / inability to search forum for solutions

    Well, since the search funtion doesn't work for the forums, I'll just have to post my problems and see if anyone from Adobe is listening, haha.
    Photoshop CS5 creates repeating 1 to 2 pixel thick lines through images in pdfs when I rip them open. You've gotta be kidding me.
    Photoshop CS3 does not do this with the exact same pdfs.
    Photoshop CS5 does not allow me to view changes in layer image adjustments before commiting to the adjustments, requiring me to use the "history" to work backward as I am making changes to all 4 colors in a CMYK image. You've REALLY gotta be kidding me.
    Photoshop CS3 allows me to view changes, and look at what I had before the changes, merely by clicking the "preview" button on and off, before committing to the changes. A beautiful feature for anyone adjusting the color of an image, which, i would think, is the number 1 reason for using Photoshop in the first place.
    These are 2 MAJOR FLAWS after using the product for only a few days. It's no wonder I waited for over a year before upgrading.
    So far, the only thing that is an improvement over CS3 is that it quits faster.
    Thank god for that and good riddance.
    I am a prepress professional and will NOT be recommending this product upgrade to my fellow users. One can only guess at who was attending the meetings where someone from marketing said, "Oh, how can we change something that works fine and justify an upgrade?"It's straight out of a Dilbert cartoon.
    I'm very very disappointed.

    If you want to give it a try, paste the following text into a new file in ExtendScript Toolkit (part of Photoshop’s installation, Applications/Utilities/Adobe Utilities/ExtendScript Toolkit CS4 or /Applications/Utilities/Adobe Utilities-CS5/ExtendScript Toolkit CS5) and save it as a jsx-file into Photoshop’s Presets/Scripts-folder.
    After restarting Photoshop the Script should be available under File > Scripts and can be assigned a Keyboard Shortcut directly, recorded into an Action, (in CS4 and CS5) be used in a Configurator-Panel or started from ExtendScript Toolkit directly.
    This one is for Curves creation:
    // creates a curves adjustment layer with the modal dialog and deletes the mask if no selction is initially active;
    // use it at your own risk;
    #target photoshop
    if (app.documents.length > 0) {
    var myDocument = app.activeDocument;
    var theMode = myDocument.mode;
    if (theMode == DocumentMode.RGB || theMode == DocumentMode.LAB || theMode == DocumentMode.CMYK || theMode == DocumentMode.GRAYSCALE) {
    // =======================================================
    try {
    var idslct = charIDToTypeID( "slct" );
        var desc7 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref1 = new ActionReference();
            var idChnl = charIDToTypeID( "Chnl" );
            var idChnl = charIDToTypeID( "Chnl" );
    switch (theMode) {
         case DocumentMode.RGB:
         var idRGB = charIDToTypeID( "RGB " );
         break;
         case DocumentMode.LAB:
         var idLab = charIDToTypeID( "Lab " );
         break;
         case DocumentMode.CMYK:
         var idCMYK = charIDToTypeID( "CMYK" );
         break;
         case DocumentMode.GRAYSCALE:
         var idBlck = charIDToTypeID( "Blck" );
         break;
            ref1.putEnumerated( idChnl, idChnl, idCMYK );
        desc7.putReference( idnull, ref1 );
    executeAction( idslct, desc7, DialogModes.NO );
    executeAction( idslct, desc2, DialogModes.NO )
    catch (e) {};
    // =======================================================
    var idslct = charIDToTypeID( "slct" );
        var desc6 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref2 = new ActionReference();
            var idChnl = charIDToTypeID( "Chnl" );
            var idChnl = charIDToTypeID( "Chnl" );
            var idRGB = charIDToTypeID( "RGB " );
            ref2.putEnumerated( idChnl, idChnl, idRGB );
        desc6.putReference( idnull, ref2 );
    executeAction( idslct, desc6, DialogModes.NO );
    var selectionYorN = true;
    //function hasSelection(doc) by xbytor;
    var res = false;
    var as = myDocument.activeHistoryState;
    myDocument.selection.deselect();
    if (as != myDocument.activeHistoryState) {
         res = true;
         myDocument.activeHistoryState = as;
    //create the layer, thanks to mr nack for this part;
    ErrStrs = {};
    ErrStrs.USER_CANCELLED=localize("$$$/ScriptingSupport/Error/UserCancelled=User cancelled the operation");
    try {var id240 = charIDToTypeID( "Mk  " );
         var desc47 = new ActionDescriptor();
         var id241 = charIDToTypeID( "null" );
         var ref31 = new ActionReference();
         var id242 = stringIDToTypeID( "contentLayer" );
         ref31.putClass( id242 );
         desc47.putReference( id241, ref31 );
         var id243 = charIDToTypeID( "Usng" );
         var desc48 = new ActionDescriptor();
         var id244 = charIDToTypeID( "Type" );
         var id245 = charIDToTypeID( "Crvs" );
         desc48.putClass( id244, id245 );
         var id246 = stringIDToTypeID( "contentLayer" );
         desc47.putObject( id243, id246, desc48 );
         executeAction( id240, desc47, DialogModes.NO );
         if (res == false) {
         try {noEmptyMask();}
         catch (a){}
    catch(e){if (e.toString().indexOf(ErrStrs.USER_CANCELLED)!=-1) {;
              } else{/*alert("$$$/ScriptingSupport/Error/CommandNotAvailable=The command is currently not available");*/
    //edit the layer;
    ErrStrs = {};
    ErrStrs.USER_CANCELLED=localize("$$$/ScriptingSupport/Error/UserCancelled=User cancelled the operation");
    try {
         var id359 = charIDToTypeID( "setd" );
         var desc77 = new ActionDescriptor();
         var id360 = charIDToTypeID( "null" );
         var ref48 = new ActionReference();
         var id361 = stringIDToTypeID( "contentLayer" );
         var id362 = charIDToTypeID( "Ordn" );
         var id363 = charIDToTypeID( "Trgt" );
         ref48.putEnumerated( id361, id362, id363 );
         desc77.putReference( id360, ref48 );
         var id364 = charIDToTypeID( "T   " );
         var id365 = 1131574899;
         desc77.putClass( id364, id365 );
         executeAction( id359, desc77, DialogModes.ALL );
    catch(e){
         if (e.toString().indexOf(ErrStrs.USER_CANCELLED)!=-1) {
              myDocument.activeHistoryState = as;
         else{/*alert("$$$/ScriptingSupport/Error/CommandNotAvailable=The command is currently not available");*/
    else {
         alert ("documentmode does not support adjustment layers")
    ////// remove the layer-mask //////
    function noEmptyMask () {
    var idDlt = charIDToTypeID( "Dlt " );
        var desc2 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref1 = new ActionReference();
            var idChnl = charIDToTypeID( "Chnl" );
            var idOrdn = charIDToTypeID( "Ordn" );
            var idTrgt = charIDToTypeID( "Trgt" );
            ref1.putEnumerated( idChnl, idOrdn, idTrgt );
        desc2.putReference( idnull, ref1 );
    executeAction( idDlt, desc2, DialogModes.NO );
    This one is for editing in the modal dialog:
    //opens the modal dialog for editing selected adjustment layers of some types, not all though; based on john nack’s panel;
    // use it at your own risk;
    #target photoshop;
    if (app.documents.length > 0) {
    var myDocument = app.activeDocument;
    var checksOut = true;
    switch (myDocument.activeLayer.kind) {
         case LayerKind.CURVES:
         theVars365 = 1131574899;
         break;
         case LayerKind.HUESATURATION:
         theVars365 = 1213428850;
         break;
         case LayerKind.SELECTIVECOLOR:
         theVars365 = 1399612227;     
         break;
         case LayerKind.LEVELS:
         theVars365 = 1282829427;
         break;
         case LayerKind.BLACKANDWHITE:
         theVars365 = 1113681495;
         break;
         case LayerKind.POSTERIZE:
         theVars365 = 1349743730;
         break;
         case LayerKind.GRADIENTMAP:
         theVars365 = 1197755760;
         break;
         case LayerKind.CHANNELMIXER:
         theVars365 = 1130917453;
         break;
         case LayerKind.THRESHOLD:
         theVars365 = 1416131187;
         break;
         case LayerKind.COLORBALANCE:
         theVars365 = 1131180610;
         break;
         case LayerKind.VIBRANCE:
         theVars365 = stringIDToTypeID( "vibrance" );
         break;
         case LayerKind.EXPOSURE:
         theVars365 = 1165521011;
         break;
         default:
         checksOut = false;
    // adjustment layers;
    if (checksOut == true){
         var id365 = theVars365;
         theModalDialogue (theVars365);
    else {
    // else check for solid fill layer;
         if (myDocument.activeLayer.kind == "LayerKind.SOLIDFILL" || myDocument.activeLayer.kind == "LayerKind.PATTERNFILL" || myDocument.activeLayer.kind == "LayerKind.GRADIENTFILL") {
              try {
                   layerContentOptions()
              catch (e) {}
         else {
              alert("selected layer is neither curves–, hue/saturation-, selective color-, levels-, black and white-, posterize-, gradient map- or threshold-adjustment layer nor a solidfill-, gradient- or pattern-layer")
    ////// modal editing //////
    function theModalDialogue (theVars365) {
    ErrStrs = {};
    ErrStrs.USER_CANCELLED=localize("$$$/ScriptingSupport/Error/UserCancelled=User cancelled the operation");
    try {
         var id359 = charIDToTypeID( "setd" );
         var desc77 = new ActionDescriptor();
         var id360 = charIDToTypeID( "null" );
         var ref48 = new ActionReference();
         var id361 = stringIDToTypeID( "contentLayer" );
         var id362 = charIDToTypeID( "Ordn" );
         var id363 = charIDToTypeID( "Trgt" );
         ref48.putEnumerated( id361, id362, id363 );
         desc77.putReference( id360, ref48 );
         var id364 = charIDToTypeID( "T   " );
         desc77.putClass( id364, id365 );
         executeAction( id359, desc77, DialogModes.ALL );
    catch(e){
         if (e.toString().indexOf(ErrStrs.USER_CANCELLED)!=-1) {;
         else{
              alert("$$$/ScriptingSupport/Error/CommandNotAvailable=The command is currently not available");
    ////// edit solid fill //////
    function layerContentOptions () {
    var id450 = charIDToTypeID( "slct" );
    var desc90 = new ActionDescriptor();
    var id451 = charIDToTypeID( "null" );
    var ref61 = new ActionReference();
    var id452 = charIDToTypeID( "Mn  " );
    var id453 = charIDToTypeID( "MnIt" );
    var id454 = charIDToTypeID( "AdjO" );
    ref61.putEnumerated( id452, id453, id454 );
    desc90.putReference( id451, ref61 );
    executeAction( id450, desc90, DialogModes.ALL )

  • I recently had a bad experience with  an online computer repair company and lost much and Photoshop CS5 is not working correctly. I want to reinstall but found a note on my original bill that says it is not compatiable with Windows 7. I am afraid to delet

    I want to delete and reinstall Photoshop CS5. I found a note one the original invoice that says it is not compatiable with Windows 7. I am using a PC.
    Is there anyway I can download an up date. I think I lost some of the componants. It is really acting up. Can I get Help here?

    CS5 runs on Window 7 very well.
    Photoshop CS5 system requirements
    Windows
    Intel® Pentium® 4 or AMD Athlon® 64 processor
    Microsoft® Windows® XP with Service Pack 3; Windows Vista® Home Premium, Business, Ultimate, or Enterprise with Service Pack 1 (Service Pack 2 recommended); or Windows 7
    1 GB of RAM
    1 GB of available hard-disk space for installation; additional free space required during installation (cannot install on removable flash-based storage devices)
    1024 x 768 display (1280 x 800 recommended) with qualified hardware-accelerated OpenGL graphics adapter, 16-bit color, and 256 MB of VRAM
    Some GPU-accelerated features require graphics support for Shader Model 3.0 and OpenGL 2.0
    DVD-ROM drive
    QuickTime 7.6.2 software required for multimedia features
    Broadband Internet connection required for online services*

  • Searching the Help index in the trial version of Photoshop CS5

    I'm working with a trial version of Photoshop CS5.  I noted a post about the failure of PS Help to return any results when doing a local search.  Apparently, there was a bug and a fix, as described here:
    http://forums.adobe.com/thread/739143
    Hi all:  thanks for your messages here.  There was a problem with the local help download package for Using Photoshop. The team has rebuilt the package and confirmed that local search for Photoshop is now working.  Please update your local copy of Using Photoshop to update the help package. Here's what to do:
    1. Open the Help app
    2. Open the Preferences
    3. Go to Local Content
    4. Highlight/select Using Photoshop
    5. Hit the Delete button.
    6. Then click Update
    The application should automatically download and update the new Help package.
    When I get to step 3, Local Content does not produce any result; so I can't implement the fix.  Is the "fully functional" trial version not fully functional?
    I was searching for a way to set the timing for AutoSave, assuming there is an AutoSave.  Any assistance would be much appreciated.  Thanks.
    Doc_Pit

    In the help application when you open the preferences instead of local content,
    click on Updater settings and click on Manually update local content, then
    click manage now.
    Added
    Photoshop doesn't have an auto save function, but there are some plugins for autosaving in
    photoshop. (there is a recent post on the forum about this)
    http://forums.adobe.com/message/3310413#3310413
    MTSTUNER
    Message was edited by: MTSTUNER

  • Photo template with white background #ffffff appears gray online, using Photoshop CS5.

    Aloha! I am stumped with this and need your help.
    Here's what I want to do: Create a seamless white border around my photo on a white background (blog post area is white). I am using Photoshop CS5.
    I've tried saving the file as PNG, GIF, and JPG but all appear as gray in the area I want as white.
    Photo below is how my image appears on a white background. The area surrounding the photo and behind the word "example" is the gray area that is white #ffffff on PS but appears otherwise when posted online (my blog on Blogger).
    The top image is a PNG file, the bottom is a GIF. The GIF is slightly better but still gray. I would like the surrounding area to be pure white so it just blends into the white background (post area).
    This is the image I see on PS, it is white in the areas surrounding the center photo, this is how I intend the final image to look like:
    I've even chosen my background (while creating a new document) as white for the background color. I've even tried a transparent background but all that did was make it worse and turn the transparent background to black when I post the image online.
    Here's a screen capture of my layers (not sure if this info is necessary but I do need help).
    If anyone would like to help me with this I'd really appreciate your assistance.  Thank you so much!!

    Mylenium, I went back in and took screen shots of what I found according to your article. I finally found color settings.
    And as for "view", I couldn't find this part in your article: View--Proof Setup enable Monitor RGB and make sure Proof Colors is enabled."
    This is a capture of what I find:
    Where do I check off under Proof Setup?
    Thanks again!

  • No search menu topic in photoshop cs5

    Hello,
    im new here, and I'm from Germany, so sorry for my english..
    I upgraded from CS 4 Design Premium to CS5 Design Premium this week,
    after that I'm missing the blue search topic at the help menu item in Photoshop CS5.
    Any idea ?
    I have OSX 10.6.6 on a iMAC.
    In all other applications like Illustrator on Indesign the search menu topic works well.
    My Photoshop Help look like this (German Version)
    But it should have this blue search topic like Indesign

    Just waiting for an answer about 10 Month now,
    IS there ANY BODY OUT THERE??
    it is definitly a bug  ... how cares ... adobe? 
    Maybe this is more responsive:
    http://feedback.photoshop.com/photoshop_family/topics/mac_os_x_menu_search_in_german_versi on_not_shown

  • Photoshop CS5: can I retroactively determine adjustment parameters?

    Photoshop CS5: can I retroactively determine adjustment parameters? E.g, the values used when I adjusted brightness/contrast?
    I'm running Adobe CS5 on an iMac 24" (OSX 10.6.8).
    Ive been working on picture in Photoshop. The first step was an adjustment of brightness/contrast. I can see the several steps I've made in Photoshop's 'history' window, but, although I can do or undo the various levels, I can't determine the values I used at each stage, as there appears to be no info on those values in the history window.
    I've been making notes of the subsequent transformations/adjustments, but I didn't remember to do that on the first step. Can I retrieve this info somehow, via history, or some other way?
    Thanks, Seb

    If you can retrieve the undamaged original image and the image with but that one adjustment applied from the History you should be able to get the values through trial and error.
    And if you follow Mylenium’s advice and work non-destructively with Adjustment Layers the task is not that hard.
    Use the original image as the lowest Layer, apply a hard Layer Mask to a Layer of the damaged one above that and insert an Adjustment Layer between the two.
    Then try various settings until the images match up.
    Edit:

  • Lens recognised in Photoshop CS5 but not in Lightroom 3

    Automatic lens correction recognises my camera make and lens ( Sony - sigma 18 -250) in Photoshop CS5 but not in Lightroom 3. In fact the lens is not even listed in Lightroom.
    Is there a way to update Lightroom with the Photoshop data?

    I don't think Photoshop's plugin filters by file type - it just throw all the profiles at you, but uses exif lens data to pre-select the bes matching.
    I think it makes sense, since after opening a file, be it raw or jpeg, in Photoshop, the program cannot be sure about the provenience of data. So it relies on user to make the right choice.

  • Photoshop CS5 standar crashes when UTC is online

    Photoshop CS5 standar crashes when UTC is online.
    I uninstalled the Universal Type Client and Photoshop works perfect, but when I install it again and go online, Photoshop stops working every single time I try to run it.
    Is there any way to isolate it from UTC?

    Contact the makers of your UTC software and tell them about the problem - only they can fix the bugs in their software (which can cause Photoshop to crash or hang).

  • Keine Online-Hilfe in Photoshop CS5

    Hallo,
    ich habe PS CS5 installiert und Software und Hilfe soweit aktualisiert. Leider habe ich aus der Software heraus gar keinen Zugriff auf die Hilfe zur Applikation, da ich den Fehler  "The requested URL /de_DE/Photoshop/cs/using/AH_HOME.html was not found on this server." bekomme.
    Dies unterbindet auch jeglichen Download zur Offlinenutzung.
    Ich habe den Eindruck, dass entweder eine Verweisseite auf Adobes Servern fehlt oder in der Software ein falscher Link hinterlegt ist.
    Im Brower kann ich auf die Hilfe zugreifen, wenn ich nach URL http://help.adobe.com/de_DE/photoshop/cs/using/index.html navigiere.
    Hat jemand einen Tip, wie das gelöst werden könnte?

    Ich habe eben PS über einen Admin-Account aufgerufen, wo ich vorher noch nicht die Applikation gestartet habe.
    Zunächst war ich positiv überrascht, da tatsächlich die Seite "Vrwenden von Photoshop CS5" korrekt angezeigt wurde.
    Dann begann die App mit dem Update der Hilfedateien und 10 Sekunden später bekam ich auch hier die genannte Fehlerseite. Somit ist die Lage unter allen Accounts nun gleich.
    Interessanterweise klappen die Hilfen aller anderen Apps (Bridge, Device Central, Extension Manager, Lightroom etc.) hier prima, nur PS nicht.
    Sowohl die Tatasache, dass ein Datenupdate die Funktion zerstört, als auch die Tatsache, dass die anderen Seiten klappen, spricht für mich erstmal nicht für ein Scripting Problem.
    Ich probiere jetzt noch mal, ob eventuell irgendein Verzeichnis nicht funktioniert von den Zugriffsrechten.
    Haben irgendwelche Einstellungen im IE oder im Adobe Reader oder sonstwo Einfluss auf die Hilfe?
    EDIT:
    Oha, ich habe gerade eine mikroskopische Entdeckung gemacht:
    In der App Hilfe wird ja rechts oben auch der genutzte Online-Pfad angezeigt. Das ist in der App-Hilfe:
    http://help.adobe.com/de_DE/Photoshop/cs/using/AH_HOME.html
    Dies führt auch im Browser zu einem Fehler.
    Wenn ich online zu der Seite hinnavigiere klappt es aber. Hier ist die URL:
    http://help.adobe.com/de_DE/photoshop/cs/using/AH_HOME.html
    Meine Augen haben zwar etwas gebraucht, aber ich denke, jetzt sehe ich den Fehler. Das "P" ist einmal groß und einmal klein geschrieben und die Community Help App verwendet leider das falsche.
    Message was edited by: Beholder003

  • Lens chromatic correction from Lightroom 5.7 to Photoshop CS5

    When I open a raw file (NEF) from Lightroom 5.7 to Photoshop CS5 all modifications done in Lightroom are taken into account by CS5 except lens chromatic correction. Does someone know how to proceed to get lens chromatic correction taken into account too?

    That's great, but what exactly did it - matrix (gamma) profiles instead of LUT? It would be good to know for future reference.
    I have seen small problems with LUT profiles in Firefox, like black clipping up to value 6 or 7, but Lightroom seems to behave well with LUT profiles here. The problem with LUT profiles is that they are "heavier" and more complex, because they contain complete tables for all possible transformations - whereas matrix profiles do it by much simpler mathematical formulae. LUT is more accurate, but matrix simpler and more reliable.
    Not that I think accuracy is a problem with Eizo CGs. Which is why it's a bit puzzling that ColorNavigator has LUT as default. I use mostly matrix targets these days, my feeling is that the simpler the profile, the better.

  • Photoshop cs5 and cs4, photoshop help...f1 why online

    Hi
    i have installed on w7 photoshop cs5 and photoshop cs4
    well when i try to read the manual (the help files) clicking F1 or under the menu Help-> Photoshop Help F1 ,photoshop cs5 and cs4 connect to the net
    for example cs4 opens a firefox page with the help guides
    cs5 opens a windows connected to internet
    for example i need to know some shortcut and i have to be connected to the net
    that's  weird
    is there a way to use the offline help? like cs3
    thanks

    You can download the help files as a PDF from the Photoshop Support pages.
    If you want to access the offline help files from F1, you have to disconnect PS from the Internet.
    If you want to turn off Community Help so that local Help opens by default, do the following:
       1. Open the Connections panel (Window > Extensions > Connections).
       2. From the Connections panel menu , select Offline Options.
       3. Select Keep Me Offline and click OK.
    Note: When you disable web services from the Connections panel, all other web services (such as Adobe Kuler and Adobe ConnectNow) are also disabled.

  • Photoshop CS5.1 Crashes on open or save

    I have only just today bought Photoshop CS5.1 and installed it on my Notebook.  If I try to open an image Photoshop crashes.  If I bring it in through explorer or Bridge then I can edit away merrily no problems, but once I try to save the file, Photoshop crashes.
    I have read and tried every possible option on the internet to resolve this including......
    Turning off Open GL inside Photoshop
    Deleting, reinstalling and Updating to the latest disply driver - shown below
    Resetting the preferences using the Ctrl Alt Shift keys on startup
    Deleting the psp files
    Running Windows 7 in classic mode
    Nothing seems to matter.  Can anyone help me
    Below are my system specs taken from inside Photoshop
    Adobe Photoshop Version: 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch]) x32
    Operating System: Windows 7 32-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:14, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 8
    Processor speed: 1596 MHz
    Built-in memory: 3063 MB
    Free memory: 1456 MB
    Memory available to Photoshop: 1626 MB
    Memory used by Photoshop: 70 %
    Image tile size: 128K
    Image cache levels: 4
    Display: 2
    Display Bounds:=  top: 0, left: 0, bottom: 1080, right: 3840
    Display: 1
    Display Bounds:=  top: 0, left: -1920, bottom: 1080, right: 0
    Video Card Number: 1
    Video Card: NVIDIA GeForce GT 230M   
    Driver Version: 8.17.12.8026
    Driver Date: 20110803000000.000000-000
    Video Card Driver: nvd3dum.dll,nvwgf2um.dll,nvwgf2um.dll
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce GT 230M   
    Video Card Memory: 1024 MB
    Serial number: 91198342986350386433
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS5.1\
    Temporary file path: C:\Users\PHILDA~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 451.5G, 288.0G free
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS5.1\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2010/12/13-23:37:10   64.449933   64.449933
       adbeape.dll   Adobe APE 2011/01/17-12:03:36   64.452786   64.452786
       AdobeLinguistic.dll   Adobe Linguisitc Library   5.0.0  
       AdobeOwl.dll   Adobe Owl 2010/06/03-13:43:23   3.0.93   61.433187
       AdobeOwlCanvas.dll   Adobe Owl Canvas   3.0.68   61.2954
       AdobePDFL.dll   PDFL 2010/12/13-23:37:10   64.341419   64.341419
       AdobePIP.dll   Adobe Product Improvement Program   5.5.0.1265  
       AdobeXMP.dll   Adobe XMP Core   5.0   64.140949
       AdobeXMPFiles.dll   Adobe XMP Files   5.0   64.140949
       AdobeXMPScript.dll   Adobe XMP Script   5.0   64.140949
       adobe_caps.dll   Adobe CAPS   4,0,42,0  
       adobe_OOBE_Launcher.dll   Adobe OOBE Launcher   2.0.0.36 (BuildVersion: 2.0; BuildDate: Mon Jan 24 2011 21:49:00)   1.000000
       AFlame.dll   AFlame 2011/01/10-23:33:35   64.444140   64.444140
       AFlamingo.dll   AFlamingo 2011/01/10-23:33:35   64.436825   64.436825
       AGM.dll   AGM 2010/12/13-23:37:10   64.449933   64.449933
       ahclient.dll    AdobeHelp Dynamic Link Library   1,6,0,20  
       aif_core.dll   AIF   2.0   53.422628
       aif_ogl.dll   AIF   2.0   53.422628
       amtlib.dll   AMTLib   4.0.0.21 (BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00)   1.000000
       amtservices.dll   AMTServices   4.0.0.21 (BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00)   1.000000
       ARE.dll   ARE 2010/12/13-23:37:10   64.449933   64.449933
       asneu.dll    AsnEndUser Dynamic Link Library   1, 7, 0, 1  
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/01/10-23:33:35   64.436825   64.436825
       AXEDOMCore.dll   AXEDOMCore 2011/01/10-23:33:35   64.436825   64.436825
       Bib.dll   BIB 2010/12/13-23:37:10   64.449933   64.449933
       BIBUtils.dll   BIBUtils 2010/12/13-23:37:10   64.449933   64.449933
       boost_threads.dll   DVA Product   5.0.0  
       cg.dll   NVIDIA Cg Runtime   2.0.0015  
       cgGL.dll   NVIDIA Cg Runtime   2.0.0015  
       CoolType.dll   CoolType 2010/12/13-23:37:10   64.449933   64.449933
       data_flow.dll   AIF   2.0   53.422628
       dvaadameve.dll   DVA Product   5.0.0  
       dvacore.dll   DVA Product   5.0.0  
       dvaui.dll   DVA Product   5.0.0  
       ExtendScript.dll   ExtendScript 2011/01/17-17:14:10   61.452840   61.452840
       FileInfo.dll   Adobe XMP FileInfo   5.0   64.140949
       icucnv36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       icudt36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       image_flow.dll   AIF   2.0   53.422628
       image_runtime.dll   AIF   2.0   53.422628
       JP2KLib.dll   JP2KLib 2010/12/13-23:37:10   64.181312   64.181312
       libeay32.dll   The OpenSSL Toolkit   0.9.8g  
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1263  
       MPS.dll   MPS 2010/12/13-23:37:10   64.450375   64.450375
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       msvcp71.dll   Microsoft® Visual Studio .NET   7.10.3077.0  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       msvcr71.dll   Microsoft® Visual Studio .NET   7.10.3052.4  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS5.1   CS5.1  
       Plugin.dll   Adobe Photoshop CS5   CS5  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (32 bit)   2.5.0.232  
       PSArt.dll   Adobe Photoshop CS5.1   CS5.1  
       PSViews.dll   Adobe Photoshop CS5.1   CS5.1  
       SCCore.dll   ScCore 2011/01/17-17:14:10   61.452840   61.452840
       shfolder.dll   Microsoft(R) Windows (R) 2000 Operating System   5.50.4027.300  
       ssleay32.dll   The OpenSSL Toolkit   0.9.8g  
       tbb.dll   Threading Building Blocks   2, 1, 2009, 0201  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   2.0.0.15 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   2.0.0.15
       WRServices.dll   WRServices Thursday January 21 2010 12:13:3   Build 0.11423   0.11423
       wu3d.dll   U3D Writer   9.3.0.113  
    Installed plug-ins:
       Accented Edges 12.0
       ADM 3.11x01
       Angled Strokes 12.0
       Average 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Bas Relief 12.0
       BMP 12.0.2
       Camera Raw 6.4.1
       Chalk & Charcoal 12.0
       Charcoal 12.0
       Chrome 12.0
       Cineon 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Clouds 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Color Halftone 12.0.2
       Colored Pencil 12.0
       CompuServe GIF 12.0.2
       Conté Crayon 12.0
       Craquelure 12.0
       Crop and Straighten Photos 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Crop and Straighten Photos Filter 12.0.2
       Crosshatch 12.0
       Crystallize 12.0.2
       Cutout 12.0
       Dark Strokes 12.0
       De-Interlace 12.0.2
       Difference Clouds 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Diffuse Glow 12.0
       Displace 12.0.2
       Dry Brush 12.0
       Eazel Acquire 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Embed Watermark 4.0
       Extrude 12.0.2
       FastCore Routines 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Fibers 12.0.2
       Film Grain 12.0
       Filter Gallery 12.0
       Fresco 12.0
       Glass 12.0
       Glowing Edges 12.0
       Grain 12.0
       Graphic Pen 12.0
       Halftone Pattern 12.0
       HDRMergeUI 12.0
       IFF Format 12.0.2
       Ink Outlines 12.0
       JPEG 2000 2.0
       Lens Blur 12.0
       Lens Correction 12.0.2
       Lens Flare 12.0.2
       Lighting Effects 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Liquify 12.0.1
       Matlab Operation 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Measurement Core 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Mezzotint 12.0.2
       MMXCore Routines 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Mosaic Tiles 12.0
       Multiprocessor Support 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Neon Glow 12.0
       Note Paper 12.0
       NTSC Colors 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Ocean Ripple 12.0
       OpenEXR 12.0.2
       Paint Daubs 12.0
       Palette Knife 12.0
       Patchwork 12.0
       Paths to Illustrator 12.0.2
       PCX 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Photocopy 12.0
       Picture Package Filter 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Pinch 12.0.2
       Pixar 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Plaster 12.0
       Plastic Wrap 12.0
       PNG 12.0.2
       Pointillize 12.0.2
       Polar Coordinates 12.0.2
       Portable Bit Map 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Poster Edges 12.0
       Radial Blur 12.0.2
       Radiance 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Read Watermark 4.0
       Reticulation 12.0
       Ripple 12.0.2
       Rough Pastels 12.0
       Save for Web & Devices 12.0
       ScriptingSupport 12.1
       Send Video Preview to Device 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Shear 12.0.2
       Smart Blur 12.0.2
       Smudge Stick 12.0
       Solarize 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Spatter 12.0
       Spherize 12.0.2
       Sponge 12.0
       Sprayed Strokes 12.0
       Stained Glass 12.0
       Stamp 12.0
       Sumi-e 12.0
       Targa 12.0.2
       Texturizer 12.0
       Tiles 12.0.2
       Torn Edges 12.0
       Twirl 12.0.2
       Underpainting 12.0
       Vanishing Point 12.0
       Variations 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Video Preview 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Water Paper 12.0
       Watercolor 12.0
       Wave 12.0.2
       WIA Support 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Wind 12.0.2
       Wireless Bitmap 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       ZigZag 12.0.2
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
       Access CS Live
       CS Review
    Installed TWAIN devices: NONE

    Thanks guys for the posts - I have managed to find the event log and it doesn't even mention Nvidia, which means I may be heading off totally down the wrong path.  See below......
    Faulting application name: Photoshop.exe, version: 12.1.0.0, time stamp: 0x4d90cf71
    Faulting module name: ntdll.dll, version: 6.1.7601.17514, time stamp: 0x4ce7b96e
    Exception code: 0xc00000fd
    Fault offset: 0x00052dde
    Faulting process id: 0x1214
    Faulting application start time: 0x01cc62c56ed31750
    Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CS5.1\Photoshop.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: c42918aa-ceb8-11e0-96fc-00271337ca66
    Anyone know what any of that means?  It seems ridiculous to me that you pay alot of money for a program that has a lot of users and something like this continually happens.  And right from the start searching online has brought up a lot of people with a similar problem.
    Thanks again for your help
    Cheers
    Phil

Maybe you are looking for