Save as PCX

I'm currently work with an old script I found here on the forums. Originally found here: http://forums.adobe.com/thread/488255
I've toyed with it a bit but to no avail, since I have no idea what I am doing.
Basically I want one of the output options to be .PCX format.
#target photoshop
function main(){
var LSets = activeDocument.layerSets.length;
var ArtLayers = activeDocument.artLayers.length;
var NoOfLayers = activeDocument.layers.length;
var Back = hasBackground();
var hasTop = false;
var selLayers =getSelectedLayersIdx();
var selGroups=[];
if(LSets>0){
    for(var s in selLayers){
   if(isLayerSet(selLayers[s])) selGroups.push(selLayers[s]);
if(activeDocument.layers[0].typename == 'ArtLayer') hasTop = true;
var win = new Window('dialog','Layer Saver');
g = win.graphics;
var myBrush = g.newBrush(g.BrushType.SOLID_COLOR, [0.99, 0.99, 0.99, 1]);
g.backgroundColor = myBrush;
win.p1= win.add("panel", undefined, undefined, {borderStyle:"black"});
win.p1.preferredSize=[500,20];
win.g1 = win.p1.add('group');
win.g1.orientation = "row";
win.title = win.g1.add('statictext',undefined,'Layer Saver');
win.title.alignment="fill";
var g = win.title.graphics;
g.font = ScriptUI.newFont("Georgia","BOLDITALIC",22);
win.g5 =win.p1.add('group');
win.g5.orientation = "column";
win.g5.alignChildren='left';
win.g5.spacing=0;
if(LSets == 0){
win.g5.rb1 = win.g5.add('radiobutton',undefined,'Save selected layers');
win.g5.rb2 = win.g5.add('radiobutton',undefined,'Save selected layers along with the top layer');
win.g5.rb3 = win.g5.add('radiobutton',undefined,'Save selected layers along with background layer');
win.g5.rb4 = win.g5.add('radiobutton',undefined,'Save all layers');
win.g5.rb5 = win.g5.add('radiobutton',undefined,'Save all layers along with the top layer');
win.g5.rb6 = win.g5.add('radiobutton',undefined,'Save all layers along with background layer');
win.g5.rb3.enabled=Back;
win.g5.rb6.enabled=Back;
win.g5.rb4.value=true;
}else{
win.g5.rb1 = win.g5.add('radiobutton',undefined,'Save selected layerSets');
win.g5.rb2 = win.g5.add('radiobutton',undefined,'Save selected layerSets along with the top layer');
win.g5.rb3 = win.g5.add('radiobutton',undefined,'Save selected layerSets along with background layer');
win.g5.rb4 = win.g5.add('radiobutton',undefined,'Save all layerSets');
win.g5.rb5 = win.g5.add('radiobutton',undefined,'Save all layerSets along with the top layer');
win.g5.rb6 = win.g5.add('radiobutton',undefined,'Save all layerSets along with background layer');
win.g5.rb3.enabled=Back;
win.g5.rb6.enabled=Back;
win.g5.rb2.enabled=hasTop;
win.g5.rb5.enabled=hasTop;
if(selGroups.length <1){
    win.g5.rb1.enabled=false;
    win.g5.rb2.enabled=false;
    win.g5.rb3.enabled=false;
win.g5.rb4.value=true;
win.p2 = win.add("panel", undefined, undefined, {borderStyle:"black"});
win.p2.preferredSize=[500,20];
win.p2.st1 = win.p2.add('statictext',undefined,'Output details');
win.p2.st1.graphics.font = ScriptUI.newFont("Tahoma", "Bold", 18);
win.g10 =win.p2.add('group');
win.g10.orientation = "row";
win.g10.alignment='left';
win.g10.et1 = win.g10.add('edittext');
win.g10.et1.preferredSize=[350,20];
win.g10.bu1 = win.g10.add('button',undefined,'Select Folder');
win.g10.bu1.onClick=function(){
var Folder1 = Folder(app.activeDocument.path);
outputFolder = Folder.selectDialog("Please select the output folder",Folder1);
if(outputFolder !=null){
  win.g10.et1.text =  decodeURI(outputFolder.fsName);
win.g12 =win.p2.add('group');
win.g12.orientation = "row";
win.g12.alignment='left';
win.g12.cb1 = win.g12.add('checkbox',undefined,'Merge Visible Layers?');
win.g12.cb2 = win.g12.add('checkbox',undefined,'Trim Layer');
win.g15 =win.p2.add('group');
win.g15.orientation = "row";
win.g15.alignment='left';
var Options= ["Layer/Group Name","FileName + Sequence No.","FileName + Layer/Group Name ","User Defined with Sequence No."];
win.g15.st1 = win.g15.add('statictext',undefined,'Save Options..');
win.g15.dd1 = win.g15.add('dropdownlist',undefined,Options);
win.g15.dd1.selection=0;
win.g15.et1 = win.g15.add('edittext');
win.g15.et1.preferredSize=[150,20];
win.g15.et1.hide();
win.g15.dd1.onChange=function(){
  if(this.selection.index==3){
      win.g15.et1.show();
      }else{
          win.g15.et1.hide();
win.g18 =win.p2.add('group');
win.g18.orientation = "row";
win.g18.st1 = win.g18.add('statictext',undefined,'Save as :');
var Types = ["PNG","PCX","PSD","PDF","TIF","JPG"];
win.g18.dd1 = win.g18.add('dropdownlist',undefined,Types);
win.g18.dd1.selection = 0;
win.g18.alignment='left';
win.g20 =win.p2.add('group');
win.g20.orientation = "row";
win.g20.bu1 = win.g20.add('button',undefined,'Process');
win.g20.bu1.preferredSize=[200,35];
win.g20.bu2 = win.g20.add('button',undefined,'Cancel');
win.g20.bu2.preferredSize=[200,35];
win.g20.bu1.onClick=function(){
    if(win.g10.et1.text == ''){
        alert("No Output Folder has been Selected!");
        return;
    if(win.g15.dd1.selection.index==3){
        if(win.g15.et1.text ==''){
            alert("No FileName Has Been Entered!");
            return;
    win.close(1);
Process();
win.center();
win.show();
function Process(){
if(LSets == 0){
//Process layers only
if(win.g5.rb1.value){//Save selected layers
for(var b in selLayers){
    selectLayerByIndex(Number(selLayers[b]));
     var lName = activeDocument.activeLayer.name;
    var saveFile= File(outputFolder+ "/" + getName(b,lName));
    dupLayers();
    if(win.g12.cb1.value){
        try{activeDocument.mergeVisibleLayers();}catch(e){}
     if(win.g12.cb2.value){
         try{activeDocument.trim(TrimType.TRANSPARENT,true,true,true,true);}catch(e){}
    SaveDOC(saveFile);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    }//End Save selected layers
if(win.g5.rb2.value){//Save selected layers along with the top layer
for(var b in selLayers){
    selectLayerByIndex(Number(selLayers[b]));
     var lName = activeDocument.activeLayer.name;
    activeDocument.activeLayer= activeDocument.layers[0];
    selectLayerByIndex(Number(selLayers[b]),true);
    var saveFile= File(outputFolder+ "/" + getName(b,lName));
    dupLayers();
    if(win.g12.cb1.value){
        try{activeDocument.mergeVisibleLayers();}catch(e){}
    if(win.g12.cb2.value){
         try{activeDocument.trim(TrimType.TRANSPARENT,true,true,true,true);}catch(e){}
    SaveDOC(saveFile);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    }//End Save selected layers along with the top layer
if(win.g5.rb3.value){//Save selected layers along with background layer
    for(var b in selLayers){
    selectLayerByIndex(Number(selLayers[b]));
     var lName = activeDocument.activeLayer.name;
    activeDocument.activeLayer = activeDocument.layers[activeDocument.layers.length-1];
    selectLayerByIndex(Number(selLayers[b]),true);
    var saveFile= File(outputFolder+ "/" + getName(b,lName));
    dupLayers();
        if(win.g12.cb1.value){
        try{activeDocument.mergeVisibleLayers();}catch(e){}
    if(win.g12.cb2.value){
         try{activeDocument.trim(TrimType.TRANSPARENT,true,true,true,true);}catch(e){}
    SaveDOC(saveFile);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    }//End Save selected layers along with background layer
if(win.g5.rb4.value){//Save all layers
selectAllLayers();
selLayers =getSelectedLayersIdx();
for(var b in selLayers){
     selectLayerByIndex(Number(selLayers[b]));
     var lName = activeDocument.activeLayer.name;
    var saveFile= File(outputFolder+ "/" + getName(b,lName));
    dupLayers();
        if(win.g12.cb1.value){
        try{activeDocument.mergeVisibleLayers();}catch(e){}
    if(win.g12.cb2.value){
         try{activeDocument.trim(TrimType.TRANSPARENT,true,true,true,true);}catch(e){}
    SaveDOC(saveFile);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    }//End Save all layers
if(win.g5.rb5.value){//Save all layers along with the top layer
selectAllLayers(1);
selLayers =getSelectedLayersIdx();
for(var b in selLayers){
    selectLayerByIndex(Number(selLayers[b]));
     var lName = activeDocument.activeLayer.name;
    activeDocument.activeLayer = activeDocument.layers[0];
    selectLayerByIndex(Number(selLayers[b]),true);
    var saveFile= File(outputFolder+ "/" + getName(b,lName));
    dupLayers();
        if(win.g12.cb1.value){
        try{activeDocument.mergeVisibleLayers();}catch(e){}
    if(win.g12.cb2.value){
         try{activeDocument.trim(TrimType.TRANSPARENT,true,true,true,true);}catch(e){}
    SaveDOC(saveFile);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    }//End Save all layers along with the top layer
if(win.g5.rb6.value){//Save all layers along with background layer
selectAllLayers();
selLayers =getSelectedLayersIdx();
    for(var b in selLayers){
    selectLayerByIndex(Number(selLayers[b]));
     var lName = activeDocument.activeLayer.name;
    activeDocument.activeLayer = activeDocument.layers[activeDocument.layers.length-1];
    selectLayerByIndex(Number(selLayers[b]),true);
    var saveFile= File(outputFolder+ "/" + getName(b,lName));
    dupLayers();
        if(win.g12.cb1.value){
        try{activeDocument.mergeVisibleLayers();}catch(e){}
    if(win.g12.cb2.value){
         try{activeDocument.trim(TrimType.TRANSPARENT,true,true,true,true);}catch(e){}
    SaveDOC(saveFile);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    }//End Save all layers along with background layer
    }else{
//Process LayerSets Only
if(win.g5.rb1.value){//Save selected layerSets
    for(var g in selGroups){
        selectLayerByIndex(Number(selGroups[g]));
        var lName = activeDocument.activeLayer.name;
        var saveFile= File(outputFolder+ "/" + getName(g,lName));
        dupLayers();
            if(win.g12.cb1.value){
        try{activeDocument.mergeVisibleLayers();}catch(e){}
    if(win.g12.cb2.value){
         try{activeDocument.trim(TrimType.TRANSPARENT,true,true,true,true);}catch(e){}
    SaveDOC(saveFile);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
   }//End Save selected layerSets
if(win.g5.rb2.value){//Save selected layerSets along with the top layer
    for(var g in selGroups){
        selectLayerByIndex(Number(selGroups[g]));
     var lName = activeDocument.activeLayer.name;
    activeDocument.activeLayer= activeDocument.layers[0];
    selectLayerByIndex(Number(selGroups[g]),true);
    var saveFile= File(outputFolder+ "/" + getName(g,lName));
    dupLayers();
        if(win.g12.cb1.value){
        try{activeDocument.mergeVisibleLayers();}catch(e){}
    if(win.g12.cb2.value){
         try{activeDocument.trim(TrimType.TRANSPARENT,true,true,true,true);}catch(e){}
    SaveDOC(saveFile);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    }//End Save selected layerSets along with the top layer
if(win.g5.rb3.value){//Save selected layerSets along with background layer
    for(var g in selGroups){
    selectLayerByIndex(Number(selGroups[g]));
     var lName = activeDocument.activeLayer.name;
    activeDocument.activeLayer = activeDocument.layers[activeDocument.layers.length-1];
    selectLayerByIndex(Number(selGroups[g]),true);
    var saveFile= File(outputFolder+ "/" + getName(g,lName));
    dupLayers();
        if(win.g12.cb1.value){
        try{activeDocument.mergeVisibleLayers();}catch(e){}
    if(win.g12.cb2.value){
         try{activeDocument.trim(TrimType.TRANSPARENT,true,true,true,true);}catch(e){}
    SaveDOC(saveFile);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    }//End Save selected layerSets along with background layer
if(win.g5.rb4.value){//Save all layerSets
    for(var g =0;g<LSets;g++){
         activeDocument.activeLayer = activeDocument.layerSets[g];
         var lName = activeDocument.activeLayer.name;
         var saveFile= File(outputFolder+ "/" + getName(g,lName));
    dupLayers();
        if(win.g12.cb1.value){
        try{activeDocument.mergeVisibleLayers();}catch(e){}
    if(win.g12.cb2.value){
         try{activeDocument.trim(TrimType.TRANSPARENT,true,true,true,true);}catch(e){}
    SaveDOC(saveFile);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    }//End Save all layerSets
if(win.g5.rb5.value){//Save all layerSets along with the top layer
    activeDocument.activeLayer = activeDocument.layers[0];
    var TopIDX =getSelectedLayersIdx();
     for(var g =0;g<LSets;g++){
         activeDocument.activeLayer = activeDocument.layerSets[g];
         var lName = activeDocument.activeLayer.name;
         selectLayerByIndex(Number(TopIDX[0]),true);
         var saveFile= File(outputFolder+ "/" + getName(g,lName));
    dupLayers();
        if(win.g12.cb1.value){
        try{activeDocument.mergeVisibleLayers();}catch(e){}
    if(win.g12.cb2.value){
         try{activeDocument.trim(TrimType.TRANSPARENT,true,true,true,true);}catch(e){}
    SaveDOC(saveFile);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    }//End Save all layerSets along with the top layer
if(win.g5.rb6.value){//Save all layerSets along with background layer
         for(var g =0;g<LSets;g++){
         activeDocument.activeLayer = activeDocument.layerSets[g];
         var lName = activeDocument.activeLayer.name;
         selectLayerByIndex(0,true);
         var saveFile= File(outputFolder+ "/" + getName(g,lName));
    dupLayers();
        if(win.g12.cb1.value){
        try{activeDocument.mergeVisibleLayers();}catch(e){}
    if(win.g12.cb2.value){
         try{activeDocument.trim(TrimType.TRANSPARENT,true,true,true,true);}catch(e){}
    SaveDOC(saveFile);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    }//End Save all layerSets along with background layer
function getName(seq,lName){
seq = zeroPad((Number(seq)+1), 3);
var dName = decodeURI(activeDocument.name).replace(/\.[^\.]+$/, '');
var Name ='';
switch (Number(win.g15.dd1.selection.index)){
    case 0: Name += lName; break;
    case 1: Name += dName +"-"+seq; break;
    case 2: Name += dName +"-"+ lName; break;
    case 3: Name += win.g15.et1.text + "-"+seq; break;
    default :break;
return Name;
function SaveDOC(saveFile){
    switch(Number(win.g18.dd1.selection.index)){
        case 0 : SavePNG(File(saveFile+".png")); break;
        case 1 : SavePCX(File(saveFile+".pcx")); break;
        case 2:  SavePSD(File(saveFile+".psd")); break;
        case 3:  SavePDF(File(saveFile+".pdf")); break;
        case 4:  SaveTIFF(File(saveFile+".tif")); break;
        case 5:  SaveJPG(File(saveFile+".jpg"),12); break;
        default : break;
main();
function hasBackground() {
   var ref = new ActionReference();
   ref.putProperty( charIDToTypeID("Prpr"), charIDToTypeID( "Bckg" ));
   ref.putEnumerated(charIDToTypeID( "Lyr " ),charIDToTypeID( "Ordn" ),charIDToTypeID( "Back" ));
   var desc =  executeActionGet(ref);
   var res = desc.getBoolean(charIDToTypeID( "Bckg" ));
   return res   
function getSelectedLayersIdx(){
      var selectedLayers = new Array;
      var ref = new ActionReference();
      ref.putEnumerated( charIDToTypeID("Dcmn"), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
      var desc = executeActionGet(ref);
      if( desc.hasKey( stringIDToTypeID( 'targetLayers' ) ) ){
         desc = desc.getList( stringIDToTypeID( 'targetLayers' ));
          var c = desc.count
          var selectedLayers = new Array();
          for(var i=0;i<c;i++){
            try{
               activeDocument.backgroundLayer;
               selectedLayers.push(  desc.getReference( i ).getIndex() );
            }catch(e){
               selectedLayers.push(  desc.getReference( i ).getIndex()+1 );
       }else{
         var ref = new ActionReference();
         ref.putProperty( charIDToTypeID("Prpr") , charIDToTypeID( "ItmI" ));
         ref.putEnumerated( charIDToTypeID("Lyr "), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
         try{
            activeDocument.backgroundLayer;
            selectedLayers.push( executeActionGet(ref).getInteger(charIDToTypeID( "ItmI" ))-1);
         }catch(e){
            selectedLayers.push( executeActionGet(ref).getInteger(charIDToTypeID( "ItmI" )));
      return selectedLayers;
function isLayerSet(idx) {        
   var ref = new ActionReference();
   ref.putIndex(1283027488, idx);
   var desc =  executeActionGet(ref);
   var type = desc.getEnumerationValue(stringIDToTypeID("layerSection"));
   var res = typeIDToStringID(type);
   if(res == 'layerSectionStart') return true;
       return false;  
function dupLayers() {
    var desc143 = new ActionDescriptor();
        var ref73 = new ActionReference();
        ref73.putClass( charIDToTypeID('Dcmn') );
    desc143.putReference( charIDToTypeID('null'), ref73 );
    desc143.putString( charIDToTypeID('Nm  '), activeDocument.activeLayer.name );
        var ref74 = new ActionReference();
        ref74.putEnumerated( charIDToTypeID('Lyr '), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
    desc143.putReference( charIDToTypeID('Usng'), ref74 );
    executeAction( charIDToTypeID('Mk  '), desc143, DialogModes.NO );
function selectLayerByIndex(index,add){
add = (add == undefined)  ? add = false : add;
var ref = new ActionReference();
    ref.putIndex(charIDToTypeID("Lyr "), index);
    var desc = new ActionDescriptor();
    desc.putReference(charIDToTypeID("null"), ref );
       if(add) desc.putEnumerated( stringIDToTypeID( "selectionModifier" ), stringIDToTypeID( "selectionModifierType" ), stringIDToTypeID( "addToSelection" ) );
      desc.putBoolean( charIDToTypeID( "MkVs" ), false );
   try{
    executeAction(charIDToTypeID("slct"), desc, DialogModes.NO );
}catch(e){}
function selectAllLayers(layer) {//does not select background layer
if(layer == undefined) layer = 0;
activeDocument.activeLayer = activeDocument.layers[activeDocument.layers.length-1];
if(activeDocument.activeLayer.isBackgroundLayer)
activeDocument.activeLayer = activeDocument.layers[activeDocument.layers.length-2];
var BL = activeDocument.activeLayer.name;
activeDocument.activeLayer = activeDocument.layers[layer];
    var desc5 = new ActionDescriptor();
        var ref3 = new ActionReference();
        ref3.putName( charIDToTypeID('Lyr '), BL);
    desc5.putReference( charIDToTypeID('null'), ref3 );
    desc5.putEnumerated( stringIDToTypeID('selectionModifier'), stringIDToTypeID('selectionModifierType'), stringIDToTypeID('addToSelectionContinuous') );
    desc5.putBoolean( charIDToTypeID('MkVs'), false );
    executeAction( charIDToTypeID('slct'), desc5, DialogModes.NO );
function zeroPad(n, s) {
   n = n.toString();
   while (n.length < s)  n = '0' + n;
   return n;
function SavePNG(saveFile){
pngSaveOptions = new PNGSaveOptions();
activeDocument.saveAs(saveFile, pngSaveOptions, true, Extension.LOWERCASE);
function SavePCX(saveFile){
pcxSaveOptions = new PCXSaveOptions();
activeDocument.saveAs(saveFile, pcxSaveOptions, true, Extension.LOWERCASE);
function SaveTIFF(saveFile){
tiffSaveOptions = new TiffSaveOptions();
tiffSaveOptions.embedColorProfile = true;
tiffSaveOptions.alphaChannels = true;
tiffSaveOptions.layers = true;
tiffSaveOptions.imageCompression = TIFFEncoding.TIFFLZW;
activeDocument.saveAs(saveFile, tiffSaveOptions, true, Extension.LOWERCASE);
function SavePSD(saveFile){
psdSaveOptions = new PhotoshopSaveOptions();
psdSaveOptions.embedColorProfile = true;
psdSaveOptions.alphaChannels = true; 
activeDocument.saveAs(saveFile, psdSaveOptions, true, Extension.LOWERCASE);
function SavePDF(saveFile){
pdfSaveOptions = new PDFSaveOptions();
activeDocument.saveAs(saveFile, pdfSaveOptions, true, Extension.LOWERCASE);
function SaveJPG(saveFile, jpegQuality){
jpgSaveOptions = new JPEGSaveOptions();
jpgSaveOptions.embedColorProfile = true;
jpgSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
jpgSaveOptions.matte = MatteType.NONE;
jpgSaveOptions.quality = jpegQuality; //1-12
activeDocument.saveAs(saveFile, jpgSaveOptions, true,Extension.LOWERCASE);
I purely guessed that this was the line of script to save as a PCX file but it didn't work upon execution. It isolates a group to save but then just stops.
function SavePCX(saveFile){
pcxSaveOptions = new PCXSaveOptions();
activeDocument.saveAs(saveFile, pcxSaveOptions, true, Extension.LOWERCASE);
I've been looking everywhere for an answer, but it seems like not one has ever had to have a script like this. I'm running CS6 of that helps.

c.pfaffenbichler wrote: Where in the documentation did you find the class PCXSaveOptions? I can’t find it in ESTK’s Object Model Viewer.
I'm not familiar with this coding whatsoever, so I just guessed based on PNG's save function. I copy pasted and guessed hoping it would work.
c.pfaffenbichler wrote:
I guess you should record a PCX-save with ScriptingListener.plugin and then use the resulting Action Manager-code wrapped in a function.
I used the recommended plugin and got this in the log:
var idsave = charIDToTypeID( "save" );
    var desc2 = new ActionDescriptor();
    var idAs = charIDToTypeID( "As  " );
    desc2.putString( idAs, """PCX""" );
    var idIn = charIDToTypeID( "In  " );
    desc2.putPath( idIn, new File( "Y:\\RSP001.pcx" ) );
    var idDocI = charIDToTypeID( "DocI" );
    desc2.putInteger( idDocI, 314 );
    var idsaveStage = stringIDToTypeID( "saveStage" );
    var idsaveStageType = stringIDToTypeID( "saveStageType" );
    var idsaveBegin = stringIDToTypeID( "saveBegin" );
    desc2.putEnumerated( idsaveStage, idsaveStageType, idsaveBegin );
executeAction( idsave, desc2, DialogModes.NO );
I have no clue what I am looking for.

Similar Messages

  • Syntax to save as PCX

    What is the scripting syntax (ideally, VBscript) to save a photoshop file as PCX? I could not find a SaveAs object for it like there is for TIF or JPG.

    Actually …
    DOM code may look cleaner and to me it is certainly more easy to understand but it is not necessarily more direct.
    If you want to test this you can measure the time the same series of operations takes in DOM and in AM – usually DOM is slower (not always, though).

  • Save targa, pcx files in photoshop E.13. (testversion).

    hello, i've downloaded the testversion of photoshop elements 13. could it be that there are no possibility to save targa or pcx files in the testversion? there are only 9 selectable types, but no targa or pcx. i work mostly with them and i need to know, if this problem will be solved if i buy the product? thanks a lot for your answers

    Hi,
    There is no difference in functionality between the trial version and an activated purchased version.
    I think you will need the full blown Photoshop not the cut down elements version.
    Brian

  • How can I read *.pcx Image ?

    Hello!
    Now, I want to read and save pcx image.
    I use jimi1_0 and its sample that name is JimiBrowserApp.
    I load jpg image, and I can save as pcx image.
    But, then, I try to read the same pcx image, I can't.
    why?
    Do you have any idea ?
    please help.

    Hello,
    Once I thought that I could solve a problem.
    I use PcxReader,
    http://www.burgsoft.com/PcxReader/
    I can read pcx image of 256colors, fullcolor, grayscale...
    But I can't read pcx image of 2colors(black and white).
    help

  • Every time I save I get an "Adobe Save For Web Error"

    Hello everyone,
    Every time I save I get an "Adobe Save For Web Error" that says "Could not complete this operation.  An unknown error has occurred."
    I haven't the slightest idea what to do or what happened but I can't save anything and it's starting to really frustrate me. Below is the system info:
    ---------------------------------BEGINNING OF SYSTEM INFO-------------------------------
    Adobe Photoshop Version: 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00) x64
    Operating System: Mac OS 10.9.0
    System architecture: Intel CPU Family:6, Model:23, Stepping:6 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1
    Physical processor count: 2
    Processor speed: 2400 MHz
    Built-in memory: 4096 MB
    Free memory: 2139 MB
    Memory available to Photoshop: 3490 MB
    Memory used by Photoshop: 70 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Version: 2.1 NVIDIA-8.18.27 310.40.05f01
    OpenCL Unavailable
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: NVIDIA GeForce 9400M OpenGL Engine
    Display: 1
    Main Display
    Display Depth:= 32
    Display Bounds:=  top: 0, left: 0, bottom: 900, right: 1440
    Video Renderer ID: 16918030
    Video Card Memory: 235 MB
    Video Rect Texture Size: 8192
    Serial number: 92299702664043361605
    Application folder: Macintosh HD:Applications:Adobe Photoshop CS6:
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 930.7G, 806.6G free
    Required Plug-ins folder: Macintosh HD:Applications:Adobe Photoshop CS6:Adobe Photoshop CS6.app:Contents:Required:
    Primary Plug-ins folder: Macintosh HD:Applications:Adobe Photoshop CS6:Plug-ins:
    Additional Plug-ins folder: not set
    Installed components:
       adbeape.framework   adbeape   3.3.8.19346   66.1025012
       AdbeScriptUIFlex.framework   AdbeScriptUIFlex   6.2.29.18602   66.490082
       adobe_caps.framework   adobe_caps   6.0.29.0   1.276181
       AdobeACE.framework   AdobeACE   2.19.18.19243   66.492997
       AdobeAGM.framework   AdobeAGM   4.26.17.19243   66.492997
       AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.7.101.18636   66.26830
       AdobeAXEDOMCore.framework   AdobeAXEDOMCore   3.7.101.18636   66.26830
       AdobeBIB.framework   AdobeBIB   1.2.02.19243   66.492997
       AdobeBIBUtils.framework   AdobeBIBUtils   1.1.01   66.492997
       AdobeCoolType.framework   AdobeCoolType   5.10.31.19243   66.492997
       AdobeCrashReporter.framework   AdobeCrashReporter   6.0.20120201  
       AdobeExtendScript.framework   AdobeExtendScript   4.2.12.18602   66.490082
       AdobeJP2K.framework   AdobeJP2K   2.0.0.18562   66.236923
       AdobeLinguistic.framework      17206  
       AdobeMPS.framework   AdobeMPS   5.8.0.19463   66.495174
       AdobeOwl.framework   AdobeOwl   4.0.93   66.496052
       AdobePDFL.framework   AdobePDFL   10.0.1.18562   66.419471
       AdobePDFSettings.framework   AdobePDFSettings   1.4  
       AdobePIP.framework   AdobePIP   6.0.0.1654  
       AdobeScCore.framework   AdobeScCore   4.2.12.18602   66.490082
       AdobeUpdater.framework   AdobeUpdater   6.0.0.1452   "52.338651"
       AdobeXMP.framework   AdobeXMPCore   66.145661   66.145661
       AdobeXMPFiles.framework   AdobeXMPFiles   66.145661   66.145661
       AdobeXMPScript.framework   AdobeXMPScript   66.145661   66.145661
       ahclient.framework   ahclient   1.7.0.56  
       aif_core.framework   AdobeAIF   3.0.00   62.490293
       aif_ocl.framework   AdobeAIF   3.0.00   62.490293
       aif_ogl.framework   AdobeAIF   3.0.00   62.490293
       AlignmentLib.framework   xcode   1.0.0.1  
       amtlib.framework   amtlib   6.0.0.75  
       amtlib.framework   amtlib   6.0.0.75  
       boost_date_time.framework   boost_date_time   6.0.0.0  
       boost_signals.framework   boost_signals   6.0.0.0  
       boost_system.framework   boost_system   6.0.0.0  
       boost_threads.framework   boost_threads   6.0.0.0  
       Cg.framework   NVIDIA Cg     
       CIT.framework   CIT   2.0.5.19287   145486
       data_flow.framework   AdobeAIF   3.0.00   62.490293
       dvaaudiodevice.framework   dvaaudiodevice   6.0.0.0  
       dvacore.framework   dvacore   6.0.0.0  
       dvamarshal.framework   dvamarshal   6.0.0.0  
       dvamediatypes.framework   dvamediatypes   6.0.0.0  
       dvaplayer.framework   dvaplayer   6.0.0.0  
       dvatransport.framework   dvatransport   6.0.0.0  
       dvaunittesting.framework   dvaunittesting   6.0.0.0  
       dynamiclink.framework   dynamiclink   6.0.0.0  
       FileInfo.framework   FileInfo   66.145433   66.145433
       filter_graph.framework   AdobeAIF   3.0.00   62.490293
       hydra_filters.framework   AdobeAIF   3.0.00   62.490293
       ICUConverter.framework   ICUConverter   3.61   "gtlib_3.0" "." "16615"
       ICUData.framework   ICUData   3.61   "gtlib_3.0" "." "16615"
       image_compiler.framework   AdobeAIF   3.0.00   62.490293
       image_flow.framework   AdobeAIF   3.0.00   62.490293
       image_runtime.framework   AdobeAIF   3.0.00   62.490293
       LogSession.framework   LogSession   2.1.2.1652  
       mediacoreif.framework   mediacoreif   6.0.0.0  
       PlugPlug.framework   PlugPlug   3.0.0.383  
       UpdaterNotifications.framework   UpdaterNotifications   6.0.0.24   "6.0.0.24"
       wrservices.framework        
    Required plug-ins:
       Accented Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Adaptive Wide Angle 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “Adaptive Wide Angle.plugin”
       ADM 3.10x16, Copyright © 1987-2008 Adobe Systems Inc.  All rights reserved. - from the file “AdobeADM.bundle”
       Angled Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Average 13.0 20120315.r.428 2012/03/15:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Average.plugin”
       Bas Relief 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       BMP 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Camera Raw 7.0 (308), Copyright © 2012 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Chalk & Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Chrome 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Cineon 13.0 20120315.r.428 2012/03/15:21:00:00  ©2002-2012 Adobe Systems Incorporated - from the file “Cineon.plugin”
       Clouds 13.0 20120315.r.428 2012/03/15:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Collada DAE 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Color Halftone 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Colored Pencil 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       CompuServe GIF 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Conté Crayon 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Craquelure 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crop and Straighten Photos 13.0 20120315.r.428 2012/03/15:21:00:00  ©2003-2012 Adobe Systems Incorporated - from the file “CropPhotosAuto.plugin”
       Crop and Straighten Photos Filter 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Crosshatch 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crystallize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Cutout 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Dark Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       De-Interlace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Difference Clouds 13.0 20120315.r.428 2012/03/15:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Diffuse Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Displace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dry Brush 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Eazel Acquire 13.0 20120315.r.428 2012/03/15:21:00:00  ©1997-2012 Adobe Systems Incorporated - from the file “EazelAcquire.plugin”
       Embed Watermark NO VERSION - from the file “DigiSign.plugin”
       Enable Async I/O 13.0 20120315.r.428 2012/03/15:21:00:00  © 2004-2012 Adobe Systems Incorporated - from the file “Enable Async IO.plugin”
       Extrude 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       FastCore Routines 13.0 20120315.r.428 2012/03/15:21:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “FastCore.plugin”
       Fibers 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Film Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Filter Gallery 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Fresco 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glowing Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Graphic Pen 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Halftone Pattern 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       HDRMergeUI 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “HDRMergeUI.plugin”
       IFF Format 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Ink Outlines 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       JPEG 2000 13.0 20120315.r.428 2012/03/15:21:00:00  ©2001-2012 Adobe Systems Incorporated - from the file “JPEG2000.plugin”
       Lens Blur 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Blur.plugin”
       Lens Correction 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Correct.plugin”
       Lens Flare 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Liquify 13.0, Copyright © 2001-2012 Adobe Systems Incorporated - from the file “Liquify.plugin”
       Matlab Operation 13.0 20120315.r.428 2012/03/15:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Measurement Core 13.0 20120315.r.428 2012/03/15:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “MeasurementCore.plugin”
       Mezzotint 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       MMXCore Routines 13.0 20120315.r.428 2012/03/15:21:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “MMXCore.plugin”
       Mosaic Tiles 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Multiprocessor Support 13.0 20120315.r.428 2012/03/15:21:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “MultiProcessor Support.plugin”
       Neon Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Note Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       NTSC Colors 13.0 20120315.r.428 2012/03/15:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “NTSC Colors.plugin”
       Ocean Ripple 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Oil Paint 13.0, Copyright © 2011 Adobe Systems Incorporated - from the file “Oil Paint.plugin”
       OpenEXR 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Paint Daubs 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Palette Knife 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Patchwork 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Paths to Illustrator 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       PCX 13.0 20120315.r.428 2012/03/15:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “PCX.plugin”
       Photocopy 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Photoshop 3D Engine 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “Photoshop3DEngine.plugin”
       Picture Package Filter 13.0 20120315.r.428 2012/03/15:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Pinch 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pixar 13.0 20120315.r.428 2012/03/15:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “Pixar.plugin”
       Plaster 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Plastic Wrap 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       PNG 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pointillize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Polar Coordinates 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Portable Bit Map 13.0 20120315.r.428 2012/03/15:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “PBM.plugin”
       Poster Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Radial Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Radiance 13.0 20120315.r.428 2012/03/15:21:00:00  ©2003-2012 Adobe Systems Incorporated - from the file “Radiance.plugin”
       Read Watermark NO VERSION - from the file “DigiRead.plugin”
       Reticulation 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Ripple 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Rough Pastels 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Save for Web 13.0, Copyright © 1999-2012 Adobe Systems Incorporated - from the file “Save for Web.plugin”
       ScriptingSupport 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “ScriptingSupport.plugin”
       Shear 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smart Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smudge Stick 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Solarize 13.0 20120315.r.428 2012/03/15:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Solarize.plugin”
       Spatter 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Spherize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Sponge 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sprayed Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stained Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stamp 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sumi-e 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Targa 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Texturizer 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Tiles 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Torn Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Twirl 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Underpainting 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Vanishing Point 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “VanishingPoint.plugin”
       Water Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Watercolor 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Wave 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wind 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wireless Bitmap 13.0 20120315.r.428 2012/03/15:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “WBMP.plugin”
       ZigZag 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE
    -------------------------------------END OF SYSTEM INFO-----------------------------------
    LIke I said, I sure hope somebody can help me out.   Any suggestions would be appreciated.   The only thing I could think that might be causing this is the fact that I upgraded to Maverick (Apple OSX) about 2.5 weeks ago.  But this problem didn't start until about 3 days ago, so surely that's not the issue.  Anyway, figured it was worth mentioning.
    Please let me know.
    Thank you,
    Jamie Richards, a fellow Photoshop addict

    I found the solution (took forever to consolidate all the answers) for OS X 10.9 + Maverick. Finally!
    1. Change permissions (as AOTPR says) to your User/Library/Preferences file so that your admin and user (the one you are using) has read + write permissions within the Get Info pane (command+I). You may have to add them with the sign.
    2. Delete Adobe save for web 12.0 Prefs & Adobe save for web 13.0 Prefs files within the User/ Library/ Preferences folder. These may be hidden for some people, so when in a finder window, hold Option(alt) and click Go from the main top menu (keep holding Option/Alt) and click Library — the full Preferences folder should open for you.
    3. Change the view when in Save for web pane in PS. If you have it in Cover Flow — it won't work. Change it to another view like List or Columns view.
    Presto! Works for me on Maverick.
    Thank god. It took forever to get this cleared up!!
    If you have any questions, email me [email protected]

  • Unable to Open/Save files PS CS5.1 win xp

    I have been running CS5.1 (Photoshop) for some time now and this morning when trying to save a file the program locks up cold, no dialogue box or anything. Just stops cold. Then I decided to try to open an existing file and the same thing happens.
    Here is my system info.
    Adobe Photoshop Version: 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch]) x32
    Operating System: Windows XP 32-bit
    Version: 5.1 Service Pack 3
    System architecture: Intel CPU Family:15, Model:2, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2
    Physical processor count: 1
    Processor speed: 2700 MHz
    Built-in memory: 1536 MB
    Free memory: 755 MB
    Memory available to Photoshop: 1212 MB
    Memory used by Photoshop: 100 %
    Image tile size: 128K
    Image cache levels: 4
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 768, right: 1280
    Video Card Number: 1
    Video Card: ATI Radeon HD 4600 Series    
    Driver Version: 6.14.10.6983
    Driver Date: 20090710043618.000000-000
    Video Card Driver: ati2dvag.dll
    Video Mode: 1280 x 768 x 4294967296 colors
    Video Card Caption: ATI Radeon HD 4600 Series    
    Video Card Memory: 1024 MB
    Serial number: REMOVED
    Application folder: D:\Program Files\Adobe\Photoshop CS5\Adobe Photoshop CS5.1\
    Temporary file path: C:\DOCUME~1\Jimmy\LOCALS~1\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 74.6G, 50.1G free
    Primary Plug-ins folder: D:\Program Files\Adobe\Photoshop CS5\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:
       3D Studio 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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.6
       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])
       Collada 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
       Dicom 12.0
       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
       Entropy 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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
       Google Earth 4 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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
       Kurtosis 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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])
       Maximum 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Mean 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])
       Median 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Mezzotint 12.0.2
       Minimum 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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
       Photoshop 3D Engine 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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])
       Range 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
       Skewness 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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
       Standard Deviation 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Sumi-e 12.0
       Summation 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Targa 12.0.2
       Texturizer 12.0
       Tiles 12.0.2
       Torn Edges 12.0
       Twirl 12.0.2
       U3D 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Underpainting 12.0
       Vanishing Point 12.0
       Variance 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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
       Wavefront|OBJ 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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
       Access CS Live
       Flash
       Kuler
       CS Review
    Installed TWAIN devices: NONE
    Yeah wow,  thats alot of stuff  half of which I have no clue what it means .
    Anyways I am aware that my machine is not the best to run Photoshop CS5.1  but it has allways worked well for me until this morning.
    I have tried all the usual stuff .. restarting windows, restarting program, resetting prefs, etc... 
    I have not done an uninstall and reinstall as I hope to find a solution to this problem before resorting to the reinstall.
    Thanks in advance...

    FIXED....
    Strangly enough after the 3rd time deleting prefs it started working........
    Just goes to show.  To err is human, to realy foul things up it takes a computer....

  • Error when trying to "Save for Web"

    I, like others have the same problem in Photoshop Elements 6 editor when trying to "Save for Web". I get an error: 
    could not complete the export command because of a program error
    I've searched the forum, but it seems like no one has found a solution.
    I have a new PC with Windows 7 on it. It's Win 7 Ultimate 64-bit. i5 processor, 16GB RAM and plenty of HD space.
    I am running Photoshop Elements 6.
    When I used the same version of Photoshop Elements 6 on my old XP computer, I didn't have this problem.
    Adobe Photoshop Elements Language Version: 6.0 (6.0 (20070910.r.377499))
    Operating System: Windows Vista
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:9 with MMX, SSE Integer, SSE FP
    Physical processor count: 4
    Built-in memory: 15822 MB
    Free memory: 11064 MB
    Memory available to Photoshop: 1621 MB
    Memory used by Photoshop: 55 %
    Image cache levels: 6
    Serial number: 10571087952197841429
    Application folder: D:\Program Files\Adobe Photoshop Elements\
    Temporary file path: C:\Users\Roger\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 111.7G, 76.2G free
    Primary Plug-ins folder: D:\Program Files\Adobe Photoshop Elements\Plug-Ins\
    Additional Plug-ins folder: not set
    Installed plug-ins:
       3D Transform 10.0 (10.0x001)
       ADM NO VERSION
       ASDStrm NO VERSION
       Accented Edges 9.0
       Angled Strokes 9.0
       Auto Divide 6.0.0.0 (6.0 (20070910.r.377499))
       Average 10.0 (10.0x001)
       BMP 10.0 (10.0x001)
       Bas Relief 9.0
       Camera Raw 4.2
       Chalk & Charcoal 9.0
       Charcoal 9.0
       Chrome 9.0
       Clouds 10.0 (10.0x001)
       Color Halftone 10.0 (10.0x001)
       Color Variations 10.0 (10.0x001)
       Colored Pencil 9.0
       CompuServe GIF 10.0 (10.0x001)
       Conditional Mode Change 10.0 (10.0x001)
       Conté Crayon 9.0
       Correct Camera Distortion 9.0
       Craquelure 9.0
       Crop and Straighten Photos Filter 10.0 (10.0x001)
       Crosshatch 9.0
       Crystallize 10.0 (10.0x001)
       Cutout 9.0
       Dark Strokes 9.0
       De-Interlace 10.0 (10.0x001)
       Difference Clouds 10.0 (10.0x001)
       Diffuse Glow 9.0
       Displace 10.0 (10.0x001)
       Dry Brush 9.0
       Extrude 10.0 (10.0x001)
       FastCore Routines 10.0 (10.0x001)
       Fibers 10.0 (10.0x001)
       Film Grain 9.0
       Filmstrip 10.0 (10.0x001)
       Filter Gallery 9.0
       Frame From Video 6.0
       Fresco 9.0
       Generic EPS 10.0
       Glass 9.0
       Glowing Edges 9.0
       Grain 9.0
       Graphic Pen 9.0
       Halftone Pattern 9.0
       Ink Outlines 9.0
       JPEG 2000 2.0
       Lens Flare 10.0 (10.0x001)
       Lighting Effects 10.0 (10.0x001)
       Liquify 7.0
       MMXCore Routines 10.0 (10.0x001)
       Magic Extractor 10.0 (10.0x001)
       Matlab Operation 10.0 (10.0x001)
       Mezzotint 10.0 (10.0x001)
       Mosaic Tiles 9.0
       Multiprocessor Support 10.0 (10.0x001)
       NTSC Colors 10.0 (10.0x001)
       Neon Glow 9.0
       Note Paper 9.0
       Ocean Ripple 9.0
       OnEdge 1, 0, 0, 1
       PCX 10.0 (10.0x001)
       PNG 10.0 (10.0x001)
       PNG Icons 1.22x1
       Paint Daubs 9.0
       Palette Knife 9.0
       Patchwork 9.0
       Photocopy 9.0
       PhotomergeUI 10.0 (10.0x001)
       Picture Package Filter 10.0 (10.0x001)
       Pinch 10.0 (10.0x001)
       Pixar 10.0 (10.0x001)
       Plaster 9.0
       Plastic Wrap 9.0
       Pointillize 10.0 (10.0x001)
       Polar Coordinates 10.0 (10.0x001)
       Poster Edges 9.0
       Radial Blur 10.0 (10.0x001)
       Read Watermark 1.70.19
       Reticulation 9.0
       Ripple 10.0 (10.0x001)
       Rough Pastels 9.0
       Save for Web 3.0
       ScriptingSupport 10.0
       Shear 10.0 (10.0x001)
       Smart Blur 10.0 (10.0x001)
       Smudge Stick 9.0
       Solarize 10.0 (10.0x001)
       Spatter 9.0
       Spherize 10.0 (10.0x001)
       Sponge 9.0
       Sprayed Strokes 9.0
       Stained Glass 9.0
       Stamp 9.0
       Straighten Image 10.0 (10.0x001)
       Straighten and Crop Image 10.0 (10.0x001)
       Sumi-e 9.0
       Targa 10.0 (10.0x001)
       Texture Fill 10.0 (10.0x001)
       TextureSelect 10.0 (10.0x001)
       Texturizer 9.0
       Tiles 10.0 (10.0x001)
       Torn Edges 9.0
       Twain Acquire 10.0 (10.0x001)
       Twain Select 10.0 (10.0x001)
       Twirl 10.0 (10.0x001)
       Underpainting 9.0
       WIA Support 10.0 (10.0x001)
       Water Paper 9.0
       Watercolor 9.0
       Wave 10.0 (10.0x001)
       Wind 10.0 (10.0x001)
       Wireless Bitmap 10.0 (10.0x001)
       ZigZag 10.0 (10.0x001)
    Plug-ins that failed to load: NONE
    Installed TWAIN devices:
       WIA-HP Scanjet 4800 series

    I also tried the alt/ctrl/shift buttons when clicking Editor in the Photoshop welcome screen. It did ask if I wanted to reset the preferences. I chose yes. I still get the same error message when trying to save for web.
    Below....showing I don't have a "save for web" folder on my C drive.
    And below, showing the same error after pressing alt/shift/ctrl when clicking on editor and clearing the preferences.
    I don't have a 'Save for Web' folder anywhere on my C: drive. I searched and came up with no folder with the text "save for web" in it.
    I did find a "save for web" folder on my D: drive and deleted that.. but now when I start up Photoshop, the option for Save for Web is grayed out...not able to select it.

  • Photoshop CC crashes when I use "save as" dialog box

    This is happening intermittently, most often after flattening a multi-layer image converting to 8-bit then trying to save as a jpeg, the error occurrs as various points during the "save as" dialog. When I installed a 3rd party plugin (correctly installed and up-to-date NIK collection) the error occurred more or less on every "save as". I'm running Windows 7 Professional 64-bit. I've tried resetting prefs and I've removed the 3rd party plugins and I'm back to crashing about 30% of the times I use "save as"
    When the error occurs It appears to have an event 1000 in the event log. I've copied the "system info" and one of the crash report texts below:
    System info:
    Adobe Photoshop Version: 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:12, Stepping:2 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 6
    Processor speed: 3200 MHz
    Built-in memory: 12271 MB
    Free memory: 5002 MB
    Memory available to Photoshop: 10940 MB
    Memory used by Photoshop: 60 %
    Image tile size: 1024K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 1.2 AMD-APP (1124.2)
    OpenGL Version: 3.0
    Video Rect Texture Size: 16384
    OpenGL Memory: 1024 MB
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: ATI FirePro V4800
    Display: 2
    Display Bounds: top=0, left=1920, bottom=1200, right=3520
    Display: 1
    Display Bounds: top=0, left=0, bottom=1080, right=1920
    Video Card Number: 1
    Video Card: ATI FirePro V4800
    Driver Version: 12.100.0.0
    Driver Date: 20130115000000.000000-000
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: ATI FirePro V4800
    Video Card Memory: 1024 MB
    Serial number: 91190363804896029386
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\
    Temporary file path: C:\Users\WORKST~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      E:\, 5.21T, 3.34T free
      G:\, 3.64T, 2.37T free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Plug-ins\
    Installed components:
       ACE.dll   ACE 2013/03/19-12:09:02   79.535293   79.535293
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdobeLinguistic.dll   Adobe Linguisitc Library   7.0.0  
       AdobeOwl.dll   Adobe Owl 2013/03/03-12:10:08   5.0.13   79.533484
       AdobePDFL.dll   PDFL 2013/03/13-12:09:15   79.499517   79.499517
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1768  
       AdobeXMP.dll   Adobe XMP Core 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPFiles.dll   Adobe XMP Files 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPScript.dll   Adobe XMP Script 2013/03/13-12:09:15   79.151481   79.151481
       adobe_caps.dll   Adobe CAPS   7,0,0,21  
       AGM.dll   AGM 2013/03/29-12:09:59   79.536232   79.536232
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31  
       aif_core.dll   AIF   5.0   79.534508
       aif_ocl.dll   AIF   5.0   79.534508
       aif_ogl.dll   AIF   5.0   79.534508
       amtlib.dll   AMTLib (64 Bit)   7.0.0.169 BuildVersion: 7.0; BuildDate: Mon Apr 8 2013 2:31:50)   1.000000
       ARE.dll   ARE 2013/03/19-12:09:02   79.535293   79.535293
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2013/03/19-12:09:02   79.535293   79.535293
       BIBUtils.dll   BIBUtils 2013/03/19-12:09:02   79.535293   79.535293
       boost_date_time.dll   DVA Product   7.0.0  
       boost_signals.dll   DVA Product   7.0.0  
       boost_system.dll   DVA Product   7.0.0  
       boost_threads.dll   DVA Product   7.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.1.6.30158   2.1.6.30158
       CITThreading.dll   Adobe CITThreading   2.1.6.30158   2.1.6.30158
       CoolType.dll   CoolType 2013/03/19-12:09:02   79.535293   79.535293
       dvaaudiodevice.dll   DVA Product   7.0.0  
       dvacore.dll   DVA Product   7.0.0  
       dvamarshal.dll   DVA Product   7.0.0  
       dvamediatypes.dll   DVA Product   7.0.0  
       dvaplayer.dll   DVA Product   7.0.0  
       dvatransport.dll   DVA Product   7.0.0  
       dvaunittesting.dll   DVA Product   7.0.0  
       dynamiclink.dll   DVA Product   7.0.0  
       ExtendScript.dll   ExtendScript 2013/03/21-12:10:31   79.535742   79.535742
       FileInfo.dll   Adobe XMP FileInfo 2013/03/19-12:09:02   79.151561   79.151561
       filter_graph.dll   AIF   5.0   79.534508
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       imslib.dll   IMSLib DLL   7.0.0.37  
       JP2KLib.dll   JP2KLib 2013/02/19-12:28:44   79.248139   79.248139
       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   12.0  
       LogSession.dll   LogSession   2.1.2.1756  
       mediacoreif.dll   DVA Product   7.0.0  
       MPS.dll   MPS 2013/03/15-13:25:52   79.535029   79.535029
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       PatchMatch.dll   PatchMatch 0000/00/00-00:00:00   1.   1.
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CC   CC  
       Plugin.dll   Adobe Photoshop CC   CC  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   4.0.1.34  
       PSArt.dll   Adobe Photoshop CC   CC  
       PSViews.dll   Adobe Photoshop CC   CC  
       SCCore.dll   ScCore 2013/03/21-12:10:31   79.535742   79.535742
       ScriptUIFlex.dll   ScriptUIFlex 2013/03/21-12:10:31   79.535742   79.535742
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       updaternotifications.dll   Adobe Updater Notifications Library   7.0.1.102 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   7.0.1.102
       WRServices.dll   WRServices Mon Feb 25 2013 16:09:10   Build 0.19078   0.19078
    Required plug-ins:
       3D Studio 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Accented Edges 14.0
       Adaptive Wide Angle 14.0
       Angled Strokes 14.0
       Average 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Bas Relief 14.0
       BMP 14.0
       Camera Raw 8.1
       Camera Raw Filter 8.1
       Chalk & Charcoal 14.0
       Charcoal 14.0
       Chrome 14.0
       Cineon 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Clouds 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Collada 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Color Halftone 14.0
       Colored Pencil 14.0
       CompuServe GIF 14.0
       Conté Crayon 14.0
       Craquelure 14.0
       Crop and Straighten Photos 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Crop and Straighten Photos Filter 14.0
       Crosshatch 14.0
       Crystallize 14.0
       Cutout 14.0
       Dark Strokes 14.0
       De-Interlace 14.0
       Dicom 14.0
       Difference Clouds 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Diffuse Glow 14.0
       Displace 14.0
       Dry Brush 14.0
       Eazel Acquire 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Embed Watermark 4.0
       Entropy 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Extrude 14.0
       FastCore Routines 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Fibers 14.0
       Film Grain 14.0
       Filter Gallery 14.0
       Flash 3D 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Fresco 14.0
       Glass 14.0
       Glowing Edges 14.0
       Google Earth 4 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Grain 14.0
       Graphic Pen 14.0
       Halftone Pattern 14.0
       HDRMergeUI 14.0
       IFF Format 14.0
       Ink Outlines 14.0
       JPEG 2000 14.0
       Kurtosis 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Lens Blur 14.0
       Lens Correction 14.0
       Lens Flare 14.0
       Liquify 14.0
       Matlab Operation 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Maximum 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mean 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Measurement Core 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Median 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mezzotint 14.0
       Minimum 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       MMXCore Routines 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mosaic Tiles 14.0
       Multiprocessor Support 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Neon Glow 14.0
       Note Paper 14.0
       NTSC Colors 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Ocean Ripple 14.0
       Oil Paint 14.0
       OpenEXR 14.0
       Paint Daubs 14.0
       Palette Knife 14.0
       Patchwork 14.0
       Paths to Illustrator 14.0
       PCX 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Photocopy 14.0
       Photoshop 3D Engine 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Picture Package Filter 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Pinch 14.0
       Pixar 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Plaster 14.0
       Plastic Wrap 14.0
       PNG 14.0
       Pointillize 14.0
       Polar Coordinates 14.0
       Portable Bit Map 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Poster Edges 14.0
       Radial Blur 14.0
       Radiance 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Range 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Read Watermark 4.0
       Reticulation 14.0
       Ripple 14.0
       Rough Pastels 14.0
       Save for Web 14.0
       ScriptingSupport 14.0
       Shake Reduction 14.0
       Shear 14.0
       Skewness 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Smart Blur 14.0
       Smudge Stick 14.0
       Solarize 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Spatter 14.0
       Spherize 14.0
       Sponge 14.0
       Sprayed Strokes 14.0
       Stained Glass 14.0
       Stamp 14.0
       Standard Deviation 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       STL 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Sumi-e 14.0
       Summation 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Targa 14.0
       Texturizer 14.0
       Tiles 14.0
       Torn Edges 14.0
       Twirl 14.0
       Underpainting 14.0
       Vanishing Point 14.0
       Variance 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Variations 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Water Paper 14.0
       Watercolor 14.0
       Wave 14.0
       Wavefront|OBJ 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       WIA Support 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Wind 14.0
       Wireless Bitmap 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       ZigZag 14.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Kuler
       Adobe Exchange
    Installed TWAIN devices: NONE
    The crash report text is
    <?xml version="1.0" encoding="UTF-16"?>
    <DATABASE>
    <EXE NAME="Photoshop.exe" FILTER="CMI_FILTER_PRIVACY">
        <MATCHING_FILE NAME="ACE.dll" SIZE="1884552" CHECKSUM="0x636BBC30" BIN_FILE_VERSION="2.20.2.30665" BIN_PRODUCT_VERSION="2.20.0.1" PRODUCT_VERSION="79.535293" FILE_DESCRIPTION="Adobe Color Engine" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="ACE 2013/03/19-12:09:02" FILE_VERSION="2.20.02.30665" ORIGINAL_FILENAME="ACE.dll" INTERNAL_NAME="ACE" LEGAL_COPYRIGHT="© 1999-2011 Adobe Systems Incorporated" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1DA57A" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="2.20.2.30665" UPTO_BIN_PRODUCT_VERSION="2.20.0.1" LINK_DATE="03/20/2013 03:08:02" UPTO_LINK_DATE="03/20/2013 03:08:02" EXPORT_NAME="ACE.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="0000a5a3a11dde2a4519844b6dbd03c73953710f22af" PROGRAM_ID="0003240d66cdcb86f2f91a12a1cab17845eb00000008" />
        <MATCHING_FILE NAME="adbeape.dll" SIZE="39304" CHECKSUM="0xB46A72C5" BIN_FILE_VERSION="3.4.0.29366" BIN_PRODUCT_VERSION="3.4.0.29366" PRODUCT_VERSION="0.1160850" FILE_DESCRIPTION="Adobe APE(64 bit)" COMPANY_NAME="Adobe Systems, Incorporated " PRODUCT_NAME="Adobe APE 2013/02/04-09:52:32" FILE_VERSION="3.4.0.29366" ORIGINAL_FILENAME="adbeape.dll" INTERNAL_NAME="Adobe APE" LEGAL_COPYRIGHT="© 2006-2011 Adobe Systems Incorporated. All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x146F8" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="3.4.0.29366" UPTO_BIN_PRODUCT_VERSION="3.4.0.29366" LINK_DATE="02/04/2013 19:25:54" UPTO_LINK_DATE="02/04/2013 19:25:54" EXPORT_NAME="adbeape.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="0000de9524d3f8a73ad413329e6aa1897caec3026717" PROGRAM_ID="0003087da914757de2cf5fb51ef85e36d9e300000904" />
        <MATCHING_FILE NAME="AdobeLinguistic.dll" SIZE="1665416" CHECKSUM="0x2B2600B8" BIN_FILE_VERSION="7.0.0.18999" BIN_PRODUCT_VERSION="7.0.32.1" PRODUCT_VERSION="7.0.0" FILE_DESCRIPTION="Linguistic Library" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="Adobe Linguisitc Library" FILE_VERSION="7.0.0.18999" ORIGINAL_FILENAME="AdobeLinguistic.dll" INTERNAL_NAME="Lilo" LEGAL_COPYRIGHT="Copyright 1999-2013 Adobe Systems Incorporated. All Rights Reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x19D599" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.18999" UPTO_BIN_PRODUCT_VERSION="7.0.32.1" LINK_DATE="02/05/2013 13:04:23" UPTO_LINK_DATE="02/05/2013 13:04:23" EXPORT_NAME="AdobeLinguistic.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="0000ac35e76d482431a6388df06c153096f80af393e4" PROGRAM_ID="0003d70963a42680ebc0e175fd09171eef3800000904" />
        <MATCHING_FILE NAME="AdobeOwl.dll" SIZE="2246024" CHECKSUM="0xB7594AF3" BIN_FILE_VERSION="5.0.13.0" BIN_PRODUCT_VERSION="5.0.13.0" PRODUCT_VERSION="5.0.13" FILE_DESCRIPTION="Adobe Owl(64 bit)" COMPANY_NAME="Adobe Systems, Incorporated " PRODUCT_NAME="Adobe Owl 2013/03/03-12:10:08" FILE_VERSION="5.0.13" ORIGINAL_FILENAME="AdobeOwl.dll" INTERNAL_NAME="Adobe Owl" LEGAL_COPYRIGHT="Copyright © 2006-2011 Adobe Systems Incorporated. All Rights Reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x22604A" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="5.0.13.0" UPTO_BIN_PRODUCT_VERSION="5.0.13.0" LINK_DATE="03/03/2013 20:53:34" UPTO_LINK_DATE="03/03/2013 20:53:34" EXPORT_NAME="AdobeOwl.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="00009bf96064fe3dadfa5f9687a64e87ecdd6bd62226" PROGRAM_ID="0003163b29344139bc93ea8c9ad1667eded000000904" />
        <MATCHING_FILE NAME="AdobePDFL.dll" SIZE="9151368" CHECKSUM="0x14B307AE" BIN_FILE_VERSION="10.0.1.30505" BIN_PRODUCT_VERSION="10.0.1.30505" PRODUCT_VERSION="79.499517" FILE_DESCRIPTION="Adobe PDF Library" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="PDFL 2013/03/13-12:09:15" FILE_VERSION="10.0.1.30505" ORIGINAL_FILENAME="AdobePDFL.dll" INTERNAL_NAME="PDFL" LEGAL_COPYRIGHT="© 1987-2012 Adobe Systems Incorporated.
    All Rights Reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x8C99C4" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="10.0.1.30505" UPTO_BIN_PRODUCT_VERSION="10.0.1.30505" LINK_DATE="03/13/2013 21:36:01" UPTO_LINK_DATE="03/13/2013 21:36:01" EXPORT_NAME="AdobePDFL.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="000009bd065377adf3b8f6a1b606e84c077529d6fc62" PROGRAM_ID="00033288c2e71bc351de8e847093e388f62000000904" />
        <MATCHING_FILE NAME="AdobePIP.dll" SIZE="877448" CHECKSUM="0x5A99E06E" BIN_FILE_VERSION="7.0.0.1768" BIN_PRODUCT_VERSION="7.0.0.1768" PRODUCT_VERSION="7.0.0.1768" FILE_DESCRIPTION="Adobe Product Improvement Program" COMPANY_NAME="Adobe Systems, Incorporated" PRODUCT_NAME="Adobe Product Improvement Program" FILE_VERSION="7.0.0.1768" ORIGINAL_FILENAME="AdobePIP.dll" INTERNAL_NAME="AdobePIP" LEGAL_COPYRIGHT="Copyright 2008-10 Adobe Systems Incorporated. All rights reserved" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xE02FD" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.1768" UPTO_BIN_PRODUCT_VERSION="7.0.0.1768" LINK_DATE="02/27/2013 07:25:10" UPTO_LINK_DATE="02/27/2013 07:25:10" EXPORT_NAME="AdobePIP.dll" VER_LANGUAGE="Language Neutral [0x0]" EXE_WRAPPER="0x0" FILE_ID="0000060a759f20a4b392c087e78562c8c6ec73abb8e6" PROGRAM_ID="00039503117e8754359cb643150d9e287d0600000000" />
        <MATCHING_FILE NAME="AdobeXMP.dll" SIZE="447368" CHECKSUM="0x70188B62" BIN_FILE_VERSION="5.5.14.30505" BIN_PRODUCT_VERSION="5.5.14.0" PRODUCT_VERSION="79.151481" FILE_DESCRIPTION="Adobe XMP Core 5.5-c014 ( 64 bit )" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="Adobe XMP Core 2013/03/13-12:09:15" FILE_VERSION="5.5-c014 ( 64 bit ), 79.151481, 2013/03/13-12:09:15" ORIGINAL_FILENAME="AdobeXMP.dll" INTERNAL_NAME="AdobeXMPCore" LEGAL_COPYRIGHT="Copyright 2002-2009, Adobe Systems Incorporated. All Rights Reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x7035C" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="5.5.14.30505" UPTO_BIN_PRODUCT_VERSION="5.5.14.0" LINK_DATE="03/13/2013 21:24:22" UPTO_LINK_DATE="03/13/2013 21:24:22" EXPORT_NAME="AdobeXMP.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="0000754a7c40f276f6b907ab93ec778fc8ea4232c178" PROGRAM_ID="0003c9af372c36d30f8fc6cb5fc048103d3200000008" />
        <MATCHING_FILE NAME="AdobeXMPFiles.dll" SIZE="1012616" CHECKSUM="0x41810543" BIN_FILE_VERSION="5.6.45.30505" BIN_PRODUCT_VERSION="5.6.45.0" PRODUCT_VERSION="79.151481" FILE_DESCRIPTION="Adobe XMP Files 5.6-f045 ( 64 bit )" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="Adobe XMP Files 2013/03/13-12:09:15" FILE_VERSION="5.6-f045 ( 64 bit ), 79.151481, 2013/03/13-12:09:15" ORIGINAL_FILENAME="AdobeXMPFiles.dll" INTERNAL_NAME="AdobeXMPFiles" LEGAL_COPYRIGHT="Copyright 2002-2009, Adobe Systems Incorporated. All Rights Reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x101377" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="5.6.45.30505" UPTO_BIN_PRODUCT_VERSION="5.6.45.0" LINK_DATE="03/13/2013 21:24:45" UPTO_LINK_DATE="03/13/2013 21:24:45" EXPORT_NAME="AdobeXMPFiles.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="00002e92c504e9707a8bc5c3b6afd4b5f028a8012de6" PROGRAM_ID="00036b28aa77d76e0ad07542ce4e058a02eb00000008" />
        <MATCHING_FILE NAME="AdobeXMPScript.dll" SIZE="141192" CHECKSUM="0xDF3B225B" BIN_FILE_VERSION="5.2.2.30505" BIN_PRODUCT_VERSION="5.2.2.0" PRODUCT_VERSION="79.151481" FILE_DESCRIPTION="Adobe XMP Script 5.2-s002 ( 64 bit )" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="Adobe XMP Script 2013/03/13-12:09:15" FILE_VERSION="5.2-s002 ( 64 bit ), 79.151481, 2013/03/13-12:09:15" ORIGINAL_FILENAME="AdobeXMPScript.dll" INTERNAL_NAME="AdobeXMPScript" LEGAL_COPYRIGHT="Copyright 2002-2009, Adobe Systems Incorporated. All Rights Reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x31A48" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="5.2.2.30505" UPTO_BIN_PRODUCT_VERSION="5.2.2.0" LINK_DATE="03/13/2013 21:24:51" UPTO_LINK_DATE="03/13/2013 21:24:51" EXPORT_NAME="AdobeXMPScript.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="0000ece9521864b572a9c91448996271508a79791229" PROGRAM_ID="00039b0df9ac50daa80d728d884e9a83c04b00000008" />
        <MATCHING_FILE NAME="adobe_caps.dll" SIZE="530312" CHECKSUM="0xDB1AA5F4" BIN_FILE_VERSION="7.0.0.21" BIN_PRODUCT_VERSION="7.0.0.21" PRODUCT_VERSION="7,0,0,21" FILE_DESCRIPTION="Adobe CAPS DLL" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="Adobe CAPS" FILE_VERSION="7,0,0,21" ORIGINAL_FILENAME="adobe_caps.dll" INTERNAL_NAME="adobe_caps.dll" LEGAL_COPYRIGHT="© 2005-2012 Adobe Systems Incorporated and its licensors. All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x8B08F" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.21" UPTO_BIN_PRODUCT_VERSION="7.0.0.21" LINK_DATE="08/23/2012 15:32:00" UPTO_LINK_DATE="08/23/2012 15:32:00" EXPORT_NAME="adobe_caps.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="0000e167caddb20298bfc95f192beb5116e582a57e83" PROGRAM_ID="00031b3528b8097b29d1368858327b9ea9b100000904" />
        <MATCHING_FILE NAME="AGM.dll" SIZE="4801928" CHECKSUM="0x5B0EBDCD" BIN_FILE_VERSION="4.30.19.30830" BIN_PRODUCT_VERSION="4.30.0.1" PRODUCT_VERSION="79.536232" FILE_DESCRIPTION="Adobe Graphics Manager" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="AGM 2013/03/29-12:09:59" FILE_VERSION="4.30.19.30830" ORIGINAL_FILENAME="AGM.dll" INTERNAL_NAME="AGM" LEGAL_COPYRIGHT="© 1984-2009 Adobe Systems Incorporated" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x49EB7D" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="4.30.19.30830" UPTO_BIN_PRODUCT_VERSION="4.30.0.1" LINK_DATE="03/29/2013 20:44:30" UPTO_LINK_DATE="03/29/2013 20:44:30" EXPORT_NAME="AGM.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="00000d1aa69384bc5778a1897e9cbc814e13661881ce" PROGRAM_ID="000371563ddd9de380c3bd004c081f3d9b9100000008" />
        <MATCHING_FILE NAME="ahclient.dll" SIZE="294280" CHECKSUM="0xE904960" BIN_FILE_VERSION="1.8.0.31" BIN_PRODUCT_VERSION="1.8.0.31" PRODUCT_VERSION="1,8,0,31" FILE_DESCRIPTION="Adobe Help Client Library" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME=" AdobeHelp Dynamic Link Library" FILE_VERSION="1,8,0,31" ORIGINAL_FILENAME="ahclient.dll" INTERNAL_NAME="AdobeHelp" LEGAL_COPYRIGHT="Copyright (C) 2008 Adobe Systems Inc." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x4C9BD" LINKER_VERSION="0x10000" UPTO_BIN_FILE_VERSION="1.8.0.31" UPTO_BIN_PRODUCT_VERSION="1.8.0.31" LINK_DATE="11/14/2012 07:32:37" UPTO_LINK_DATE="11/14/2012 07:32:37" EXPORT_NAME="ahclient.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="00001708abf4ec7ba4d3a837a41a4567c180bdc5ff4c" PROGRAM_ID="00037650d62955e8aefb888fe97e68cfe4f700000904" />
        <MATCHING_FILE NAME="aif_core.dll" SIZE="499080" CHECKSUM="0xC5447432" BIN_FILE_VERSION="5.0.0.1" BIN_PRODUCT_VERSION="5.0.0.1" PRODUCT_VERSION="5.0" FILE_DESCRIPTION="Adobe Image Foundation" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="AIF" FILE_VERSION="5.0.00" ORIGINAL_FILENAME="" INTERNAL_NAME="AIF" LEGAL_COPYRIGHT="© 2005-2010 Adobe Systems Incorporated" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x8448A" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="5.0.0.1" UPTO_BIN_PRODUCT_VERSION="5.0.0.1" LINK_DATE="03/12/2013 21:30:20" UPTO_LINK_DATE="03/12/2013 21:30:20" EXPORT_NAME="aif_core.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="00009d485ddb1703c9deecbb3dbcff7df785ee8e661c" PROGRAM_ID="00034da7b6f62660163971449e009710cd8000000008" />
        <MATCHING_FILE NAME="aif_ocl.dll" SIZE="178056" CHECKSUM="0x3A6BC983" BIN_FILE_VERSION="5.0.0.1" BIN_PRODUCT_VERSION="5.0.0.1" PRODUCT_VERSION="5.0" FILE_DESCRIPTION="Adobe Image Foundation" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="AIF" FILE_VERSION="5.0.00" ORIGINAL_FILENAME="" INTERNAL_NAME="AIF" LEGAL_COPYRIGHT="© 2005-2010 Adobe Systems Incorporated" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x38B92" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="5.0.0.1" UPTO_BIN_PRODUCT_VERSION="5.0.0.1" LINK_DATE="03/12/2013 21:30:36" UPTO_LINK_DATE="03/12/2013 21:30:36" EXPORT_NAME="aif_ocl.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="0000d44de2335805426a0e0ea10b4831f6d5f98f8470" PROGRAM_ID="00034da7b6f62660163971449e009710cd8000000008" />
        <MATCHING_FILE NAME="aif_ogl.dll" SIZE="2655112" CHECKSUM="0xF38EE84B" BIN_FILE_VERSION="5.0.0.1" BIN_PRODUCT_VERSION="5.0.0.1" PRODUCT_VERSION="5.0" FILE_DESCRIPTION="Adobe Image Foundation" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="AIF" FILE_VERSION="5.0.00" ORIGINAL_FILENAME="" INTERNAL_NAME="AIF" LEGAL_COPYRIGHT="© 2005-2010 Adobe Systems Incorporated" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x296C8E" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="5.0.0.1" UPTO_BIN_PRODUCT_VERSION="5.0.0.1" LINK_DATE="03/12/2013 21:30:29" UPTO_LINK_DATE="03/12/2013 21:30:29" EXPORT_NAME="aif_ogl.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="0000a160c059574df29efa4c1a743a9c35509f2a4ca1" PROGRAM_ID="00034da7b6f62660163971449e009710cd8000000008" />
        <MATCHING_FILE NAME="AlignmentLib.dll" SIZE="10603400" CHECKSUM="0x7BF2A3B4" MODULE_TYPE="WIN32" PE_CHECKSUM="0xA278D7" LINKER_VERSION="0x0" LINK_DATE="04/23/2013 07:33:57" UPTO_LINK_DATE="04/23/2013 07:33:57" EXPORT_NAME="AlignmentLib.dll" EXE_WRAPPER="0x0" FILE_ID="000017295d4f45a0ab1f8c9648d59e60b1a86dc0ebc9" PROGRAM_ID="000390dbbd91643de0b593859028045291b00000ffff" />
        <MATCHING_FILE NAME="amtlib.dll" SIZE="2420104" CHECKSUM="0x93B69BA7" BIN_FILE_VERSION="7.0.0.169" BIN_PRODUCT_VERSION="7.0.0.169" PRODUCT_VERSION="7.0.0.169 BuildVersion: 7.0; BuildDate: Mon Apr 8 2013 2:31:50)" FILE_DESCRIPTION="AMT Licensing" COMPANY_NAME="Adobe Systems, Incorporated" PRODUCT_NAME="AMTLib (64 Bit)" FILE_VERSION="7.0.0.169" ORIGINAL_FILENAME="amtlib.dll" INTERNAL_NAME="amtlib" LEGAL_COPYRIGHT="Copyright 2006-2013 Adobe Systems Incorporated. All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x25091C" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.169" UPTO_BIN_PRODUCT_VERSION="7.0.0.169" LINK_DATE="04/07/2013 20:09:11" UPTO_LINK_DATE="04/07/2013 20:09:11" EXPORT_NAME="amtlib.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="000053d2ea1a499fc83e00eaea7b5dd088555105d35b" PROGRAM_ID="00032277542c2beb387b458892c624f2b85c00000904" />
        <MATCHING_FILE NAME="ARE.dll" SIZE="420744" CHECKSUM="0x998683E9" BIN_FILE_VERSION="1.5.2.30665" BIN_PRODUCT_VERSION="1.5.0.1" PRODUCT_VERSION="79.535293" FILE_DESCRIPTION="Adobe Raster Express" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="ARE 2013/03/19-12:09:02" FILE_VERSION="1.5.02.30665" ORIGINAL_FILENAME="ARE.dll" INTERNAL_NAME="ARE" LEGAL_COPYRIGHT="© 2000-2009 Adobe Systems Incorporated" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x711BE" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.5.2.30665" UPTO_BIN_PRODUCT_VERSION="1.5.0.1" LINK_DATE="03/20/2013 03:10:03" UPTO_LINK_DATE="03/20/2013 03:10:03" EXPORT_NAME="ARE.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="0000f90ffa69f789af7928541bfad55b955e8d928070" PROGRAM_ID="0003d949fd29156c3aae04873f576645e50700000008" />
        <MATCHING_FILE NAME="AXE8SharedExpat.dll" SIZE="196488" CHECKSUM="0xFB039733" BIN_FILE_VERSION="3.7.101.18636" BIN_PRODUCT_VERSION="3.7.0.1" PRODUCT_VERSION="66.26830" FILE_DESCRIPTION="AXE Shared EXPAT (UTF-8 native)" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="AXE8SharedExpat 2011/12/16-15:10:49" FILE_VERSION="3.7.101.18636" ORIGINAL_FILENAME="AXE8SharedExpat.dll" INTERNAL_NAME="AXE8SharedExpat" LEGAL_COPYRIGHT="© 2003-2010 Adobe Systems Incorporated" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x3D850" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="3.7.101.18636" UPTO_BIN_PRODUCT_VERSION="3.7.0.1" LINK_DATE="12/17/2011 01:12:29" UPTO_LINK_DATE="12/17/2011 01:12:29" EXPORT_NAME="AXE8SharedExpat.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="0000e37bd24d4a97e29a6b0c0e579343514712f9f339" PROGRAM_ID="00030a489ba1745326d9d8f2dbc82072d5b300000008" />
        <MATCHING_FILE NAME="AXEDOMCore.dll" SIZE="939912" CHECKSUM="0x33F3EAC4" BIN_FILE_VERSION="3.7.101.18636" BIN_PRODUCT_VERSION="3.7.0.1" PRODUCT_VERSION="66.26830" FILE_DESCRIPTION="Adobe XML Engine: DOM Core" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="AXEDOMCore 2011/12/16-15:10:49" FILE_VERSION="3.7.101.18636" ORIGINAL_FILENAME="AXEDOMCore.dll" INTERNAL_NAME="AXEDOMCore" LEGAL_COPYRIGHT="© 2001-2010 Adobe Systems Incorporated" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xF457F" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="3.7.101.18636" UPTO_BIN_PRODUCT_VERSION="3.7.0.1" LINK_DATE="12/17/2011 01:11:37" UPTO_LINK_DATE="12/17/2011 01:11:37" EXPORT_NAME="AXEDOMCore.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="00001b772df4d98ca4ddfdf0571153512b61d7321b24" PROGRAM_ID="000336c970d0e8a5b0df2022de3fc707186b00000008" />
        <MATCHING_FILE NAME="Bib.dll" SIZE="394632" CHECKSUM="0x23D855DD" BIN_FILE_VERSION="1.2.2.30665" BIN_PRODUCT_VERSION="1.2.0.1" PRODUCT_VERSION="79.535293" FILE_DESCRIPTION="Bravo Interface Binder" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="BIB 2013/03/19-12:09:02" FILE_VERSION="1.2.03.30665" ORIGINAL_FILENAME="BIB.dll" INTERNAL_NAME="BIB" LEGAL_COPYRIGHT="© 1995-2009 Adobe Systems Incorporated" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x64643" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.2.2.30665" UPTO_BIN_PRODUCT_VERSION="1.2.0.1" LINK_DATE="03/20/2013 03:05:44" UPTO_LINK_DATE="03/20/2013 03:05:44" EXPORT_NAME="BIB.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="00009533d9b9624cb07bd3842e4ab68dc6abb1020d97" PROGRAM_ID="000344459cc1fbfcc0adb6b2d42ef8569b2900000008" />
        <MATCHING_FILE NAME="BIBUtils.dll" SIZE="301960" CHECKSUM="0x39C05953" BIN_FILE_VERSION="1.1.1.1" BIN_PRODUCT_VERSION="1.1.0.1" PRODUCT_VERSION="79.535293" FILE_DESCRIPTION="Bravo Interface Binder Utilities" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="BIBUtils 2013/03/19-12:09:02" FILE_VERSION="1.1.01.30665" ORIGINAL_FILENAME="BIBUtils.dll" INTERNAL_NAME="BIBUtils" LEGAL_COPYRIGHT="© 1993-2009 Adobe Systems Incorporated" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x547DF" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.1.1.1" UPTO_BIN_PRODUCT_VERSION="1.1.0.1" LINK_DATE="03/20/2013 03:07:13" UPTO_LINK_DATE="03/20/2013 03:07:13" EXPORT_NAME="BIBUtils.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="00001438f6cc7ad305050751dc8519180a7816a0b1cc" PROGRAM_ID="00031c0fa6aa0c390d171bb8fead38fc90ea00000008" />
        <MATCHING_FILE NAME="boost_date_time.dll" SIZE="76168" CHECKSUM="0xE7F97D" BIN_FILE_VERSION="7.0.0.0" BIN_PRODUCT_VERSION="7.0.0.0" PRODUCT_VERSION="7.0.0" FILE_DESCRIPTION="DVA Product" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="DVA Product" FILE_VERSION="7.0.0.0" ORIGINAL_FILENAME="boost_date_time.dll" INTERNAL_NAME="boost_date_time" LEGAL_COPYRIGHT="Copyright 2013 Adobe Systems Incorporated.  All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x21D1C" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.0" UPTO_BIN_PRODUCT_VERSION="7.0.0.0" LINK_DATE="03/30/2013 19:14:00" UPTO_LINK_DATE="03/30/2013 19:14:00" EXPORT_NAME="boost_date_time.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="000007db9d0a55cc190e680baba2a5fdc1611439e0bf" PROGRAM_ID="0003e99dc810c640969f24d0f87b0a44d74800000904" />
        <MATCHING_FILE NAME="boost_signals.dll" SIZE="86408" CHECKSUM="0xEB4A59EF" BIN_FILE_VERSION="7.0.0.0" BIN_PRODUCT_VERSION="7.0.0.0" PRODUCT_VERSION="7.0.0" FILE_DESCRIPTION="DVA Product" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="DVA Product" FILE_VERSION="7.0.0.0" ORIGINAL_FILENAME="boost_signals.dll" INTERNAL_NAME="boost_signals" LEGAL_COPYRIGHT="Copyright 2013 Adobe Systems Incorporated.  All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1B818" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.0" UPTO_BIN_PRODUCT_VERSION="7.0.0.0" LINK_DATE="03/30/2013 19:14:00" UPTO_LINK_DATE="03/30/2013 19:14:00" EXPORT_NAME="boost_signals.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="00003bb7b8695bc6bd2d8fa75fbcfef7f0a73c53447f" PROGRAM_ID="0003e99dc810c640969f24d0f87b0a44d74800000904" />
        <MATCHING_FILE NAME="boost_system.dll" SIZE="28040" CHECKSUM="0x72AD4B1A" BIN_FILE_VERSION="7.0.0.0" BIN_PRODUCT_VERSION="7.0.0.0" PRODUCT_VERSION="7.0.0" FILE_DESCRIPTION="DVA Product" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="DVA Product" FILE_VERSION="7.0.0.0" ORIGINAL_FILENAME="boost_system.dll" INTERNAL_NAME="boost_system" LEGAL_COPYRIGHT="Copyright 2013 Adobe Systems Incorporated.  All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x14772" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.0" UPTO_BIN_PRODUCT_VERSION="7.0.0.0" LINK_DATE="03/30/2013 19:13:59" UPTO_LINK_DATE="03/30/2013 19:13:59" EXPORT_NAME="boost_system.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="0000426a248abfebbe48bc3bbe6c2f2f6543b164b0d1" PROGRAM_ID="0003e99dc810c640969f24d0f87b0a44d74800000904" />
        <MATCHING_FILE NAME="boost_threads.dll" SIZE="77192" CHECKSUM="0xA115F375" BIN_FILE_VERSION="7.0.0.0" BIN_PRODUCT_VERSION="7.0.0.0" PRODUCT_VERSION="7.0.0" FILE_DESCRIPTION="DVA Product" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="DVA Product" FILE_VERSION="7.0.0.0" ORIGINAL_FILENAME="boost_threads.dll" INTERNAL_NAME="boost_threads" LEGAL_COPYRIGHT="Copyright 2013 Adobe Systems Incorporated.  All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1FAAF" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.0" UPTO_BIN_PRODUCT_VERSION="7.0.0.0" LINK_DATE="03/30/2013 19:14:02" UPTO_LINK_DATE="03/30/2013 19:14:02" EXPORT_NAME="boost_threads.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="00007775c96ed50446b33eea17b557cbce68b6030030" PROGRAM_ID="0003e99dc810c640969f24d0f87b0a44d74800000904" />
        <MATCHING_FILE NAME="cg.dll" SIZE="9542248" CHECKSUM="0x5F515094" BIN_FILE_VERSION="3.0.0.7" BIN_PRODUCT_VERSION="3.0.0.7" PRODUCT_VERSION="3.0.00007" FILE_DESCRIPTION="Cg Core Runtime Library" COMPANY_NAME="NVIDIA Corporation" PRODUCT_NAME="NVIDIA Cg Runtime" FILE_VERSION="3.0.00007" ORIGINAL_FILENAME="cg.dll" INTERNAL_NAME="cg" LEGAL_COPYRIGHT="Copyright (C) 2002-2010, NVIDIA Corporation" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x926230" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="3.0.0.7" UPTO_BIN_PRODUCT_VERSION="3.0.0.7" LINK_DATE="07/22/2010 21:03:37" UPTO_LINK_DATE="07/22/2010 21:03:37" EXPORT_NAME="cg.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="0000a6e96c6f3519a88e48b795a5f03e510efa5f9cf1" PROGRAM_ID="0003ad01f1cbbe6cde678973c3333281b20100000904" />
        <MATCHING_FILE NAME="cgGL.dll" SIZE="453736" CHECKSUM="0x7626A598" BIN_FILE_VERSION="3.0.0.7" BIN_PRODUCT_VERSION="3.0.0.7" PRODUCT_VERSION="3.0.00007" FILE_DESCRIPTION="Cg GL Runtime Library" COMPANY_NAME="NVIDIA Corporation" PRODUCT_NAME="NVIDIA Cg Runtime" FILE_VERSION="3.0.00007" ORIGINAL_FILENAME="cgGL.dll" INTERNAL_NAME="cgGL" LEGAL_COPYRIGHT="Copyright (C) 2002-2010, NVIDIA Corporation" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x76C24" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="3.0.0.7" UPTO_BIN_PRODUCT_VERSION="3.0.0.7" LINK_DATE="07/22/2010 21:05:16" UPTO_LINK_DATE="07/22/2010 21:05:16" EXPORT_NAME="cgGL.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="00009e920274aa16b271cc032b1c3dfbe8e1310a4180" PROGRAM_ID="0003ad01f1cbbe6cde678973c3333281b20100000904" />
        <MATCHING_FILE NAME="CIT.dll" SIZE="671112" CHECKSUM="0xAB643F3D" BIN_FILE_VERSION="2.1.6.30158" BIN_PRODUCT_VERSION="2.1.6.0" PRODUCT_VERSION="2.1.6.30158" FILE_DESCRIPTION="CIT, 2.1.6.30158 ( 64 bit )" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="Adobe CIT" FILE_VERSION="2.1.6.30158 ( 64 bit )" ORIGINAL_FILENAME="CIT.dll" INTERNAL_NAME="Content Intelligence Toolkit (CIT)" LEGAL_COPYRIGHT="Copyright 2011, Adobe Systems Incorporated. All Rights Reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xB21F9" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="2.1.6.30158" UPTO_BIN_PRODUCT_VERSION="2.1.6.0" LINK_DATE="03/04/2013 21:38:36" UPTO_LINK_DATE="03/04/2013 21:38:36" EXPORT_NAME="CIT.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="00006b8c1501988bdfe8812bda6faec901287bfa8409" PROGRAM_ID="000383e65ced003b7af3143525ee4c5d42a800000008" />
        <MATCHING_FILE NAME="CITThreading.dll" SIZE="150408" CHECKSUM="0x414ABB3E" BIN_FILE_VERSION="2.1.6.30158" BIN_PRODUCT_VERSION="2.1.6.0" PRODUCT_VERSION="2.1.6.30158" FILE_DESCRIPTION="CITThreading, 2.1.6.30158 ( 64 bit )" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="Adobe CITThreading" FILE_VERSION="2.1.6.30158 ( 64 bit )" ORIGINAL_FILENAME="CITThreading.dll" INTERNAL_NAME="Threading for Content Intelligence Toolkit (CIT)" LEGAL_COPYRIGHT="Copyright 2011, Adobe Systems Incorporated. All Rights Reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x2BC52" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="2.1.6.30158" UPTO_BIN_PRODUCT_VERSION="2.1.6.0" LINK_DATE="03/04/2013 21:38:24" UPTO_LINK_DATE="03/04/2013 21:38:24" EXPORT_NAME="CITThreading.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="00007c0af1c3417cf153096a6fa473b56a29daa07af3" PROGRAM_ID="0003db1c534989163c1a56819a98c42f65a900000008" />
        <MATCHING_FILE NAME="CoolType.dll" SIZE="4397448" CHECKSUM="0xD6EE9751" BIN_FILE_VERSION="5.13.0.30665" BIN_PRODUCT_VERSION="5.13.0.1" PRODUCT_VERSION="79.535293" FILE_DESCRIPTION="CoolType Typography Engine" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="CoolType 2013/03/19-12:09:02" FILE_VERSION="5.13.00.30665" ORIGINAL_FILENAME="CoolType.dll" INTERNAL_NAME="CoolType" LEGAL_COPYRIGHT="© 1984-2009 Adobe Systems Incorporated" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x4407C7" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="5.13.0.30665" UPTO_BIN_PRODUCT_VERSION="5.13.0.1" LINK_DATE="03/20/2013 03:20:12" UPTO_LINK_DATE="03/20/2013 03:20:12" EXPORT_NAME="CoolType.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="0000c83dd6dec3f161620fd8859b46312986205d37c3" PROGRAM_ID="0003b604557069d761e07c0d97434963130000000008" />
        <MATCHING_FILE NAME="dvaaudiodevice.dll" SIZE="1171848" CHECKSUM="0x279F1DE3" BIN_FILE_VERSION="7.0.0.0" BIN_PRODUCT_VERSION="7.0.0.0" PRODUCT_VERSION="7.0.0" FILE_DESCRIPTION="DVA Product" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="DVA Product" FILE_VERSION="7.0.0.0" ORIGINAL_FILENAME="dvaaudiodevice.dll" INTERNAL_NAME="dvaaudiodevice" LEGAL_COPYRIGHT="Copyright 2013 Adobe Systems Incorporated.  All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x11FEF3" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.0" UPTO_BIN_PRODUCT_VERSION="7.0.0.0" LINK_DATE="03/30/2013 19:15:07" UPTO_LINK_DATE="03/30/2013 19:15:07" EXPORT_NAME="dvaaudiodevice.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="0000b844cf09f2c917d2d339a12641c06e68b18b9931" PROGRAM_ID="0003e99dc810c640969f24d0f87b0a44d74800000904" />
        <MATCHING_FILE NAME="dvacore.dll" SIZE="2779528" CHECKSUM="0x6808BF2D" BIN_FILE_VERSION="7.0.0.0" BIN_PRODUCT_VERSION="7.0.0.0" PRODUCT_VERSION="7.0.0" FILE_DESCRIPTION="DVA Product" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="DVA Product" FILE_VERSION="7.0.0.0" ORIGINAL_FILENAME="dvacore.dll" INTERNAL_NAME="dvacore" LEGAL_COPYRIGHT="Copyright 2013 Adobe Systems Incorporated.  All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x2A7B58" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.0" UPTO_BIN_PRODUCT_VERSION="7.0.0.0" LINK_DATE="03/30/2013 19:14:26" UPTO_LINK_DATE="03/30/2013 19:14:26" EXPORT_NAME="dvacore.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="0000e03aebc5c89acec1ec279f4f6bbbf73cec618600" PROGRAM_ID="0003e99dc810c640969f24d0f87b0a44d74800000904" />
        <MATCHING_FILE NAME="dvamarshal.dll" SIZE="289160" CHECKSUM="0x756E0A74" BIN_FILE_VERSION="7.0.0.0" BIN_PRODUCT_VERSION="7.0.0.0" PRODUCT_VERSION="7.0.0" FILE_DESCRIPTION="DVA Product" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="DVA Product" FILE_VERSION="7.0.0.0" ORIGINAL_FILENAME="dvamarshal.dll" INTERNAL_NAME="dvamarshal" LEGAL_COPYRIGHT="Copyright 2013 Adobe Systems Incorporated.  All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x5303C" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.0" UPTO_BIN_PRODUCT_VERSION="7.0.0.0" LINK_DATE="03/30/2013 19:14:56" UPTO_LINK_DATE="03/30/2013 19:14:56" EXPORT_NAME="dvamarshal.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="00004b5a091924c814fa75b856d99a0762799822e0ea" PROGRAM_ID="0003e99dc810c640969f24d0f87b0a44d74800000904" />
        <MATCHING_FILE NAME="dvamediatypes.dll" SIZE="298376" CHECKSUM="0x87836317" BIN_FILE_VERSION="7.0.0.0" BIN_PRODUCT_VERSION="7.0.0.0" PRODUCT_VERSION="7.0.0" FILE_DESCRIPTION="DVA Product" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="DVA Product" FILE_VERSION="7.0.0.0" ORIGINAL_FILENAME="dvamediatypes.dll" INTERNAL_NAME="dvamediatypes" LEGAL_COPYRIGHT="Copyright 2013 Adobe Systems Incorporated.  All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x5695E" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.0" UPTO_BIN_PRODUCT_VERSION="7.0.0.0" LINK_DATE="03/30/2013 19:14:34" UPTO_LINK_DATE="03/30/2013 19:14:34" EXPORT_NAME="dvamediatypes.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="000025109de8c8a14b993d276f694987890f88c169d1" PROGRAM_ID="0003e99dc810c640969f24d0f87b0a44d74800000904" />
        <MATCHING_FILE NAME="dvaplayer.dll" SIZE="1371016" CHECKSUM="0x900DE5E" BIN_FILE_VERSION="7.0.0.0" BIN_PRODUCT_VERSION="7.0.0.0" PRODUCT_VERSION="7.0.0" FILE_DESCRIPTION="DVA Product" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="DVA Product" FILE_VERSION="7.0.0.0" ORIGINAL_FILENAME="dvaplayer.dll" INTERNAL_NAME="dvaplayer" LEGAL_COPYRIGHT="Copyright 2013 Adobe Systems Incorporated.  All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x15B44F" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.0" UPTO_BIN_PRODUCT_VERSION="7.0.0.0" LINK_DATE="03/30/2013 19:15:50" UPTO_LINK_DATE="03/30/2013 19:15:50" EXPORT_NAME="dvaplayer.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="000080a172898361d6598d9524289d1be20987d34026" PROGRAM_ID="0003e99dc810c640969f24d0f87b0a44d74800000904" />
        <MATCHING_FILE NAME="dvatransport.dll" SIZE="678280" CHECKSUM="0xFC658B8E" BIN_FILE_VERSION="7.0.0.0" BIN_PRODUCT_VERSION="7.0.0.0" PRODUCT_VERSION="7.0.0" FILE_DESCRIPTION="DVA Product" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="DVA Product" FILE_VERSION="7.0.0.0" ORIGINAL_FILENAME="dvatransport.dll" INTERNAL_NAME="dvatransport" LEGAL_COPYRIGHT="Copyright 2013 Adobe Systems Incorporated.  All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0xA8E08" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.0" UPTO_BIN_PRODUCT_VERSION="7.0.0.0" LINK_DATE="03/30/2013 19:14:45" UPTO_LINK_DATE="03/30/2013 19:14:45" EXPORT_NAME="dvatransport.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="0000db2b999ef742bc55882bf910208f19232daf9567" PROGRAM_ID="0003e99dc810c640969f24d0f87b0a44d74800000904" />
        <MATCHING_FILE NAME="dvaunittesting.dll" SIZE="232328" CHECKSUM="0x695382E5" BIN_FILE_VERSION="7.0.0.0" BIN_PRODUCT_VERSION="7.0.0.0" PRODUCT_VERSION="7.0.0" FILE_DESCRIPTION="DVA Product" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="DVA Product" FILE_VERSION="7.0.0.0" ORIGINAL_FILENAME="dvaunittesting.dll" INTERNAL_NAME="dvaunittesting" LEGAL_COPYRIGHT="Copyright 2013 Adobe Systems Incorporated.  All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x48971" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.0" UPTO_BIN_PRODUCT_VERSION="7.0.0.0" LINK_DATE="03/30/2013 19:14:37" UPTO_LINK_DATE="03/30/2013 19:14:37" EXPORT_NAME="dvaunittesting.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="00008403f33fec952377533adb83bfb947c157a05ae8" PROGRAM_ID="0003e99dc810c640969f24d0f87b0a44d74800000904" />
        <MATCHING_FILE NAME="dynamiclink.dll" SIZE="2511752" CHECKSUM="0xB15E568" BIN_FILE_VERSION="7.0.0.0" BIN_PRODUCT_VERSION="7.0.0.0" PRODUCT_VERSION="7.0.0" FILE_DESCRIPTION="DVA Product" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="DVA Product" FILE_VERSION="7.0.0.0" ORIGINAL_FILENAME="dynamiclink.dll" INTERNAL_NAME="dynamiclink" LEGAL_COPYRIGHT="Copyright 2013 Adobe Systems Incorporated.  All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x26FAB3" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.0" UPTO_BIN_PRODUCT_VERSION="7.0.0.0" LINK_DATE="03/30/2013 19:15:15" UPTO_LINK_DATE="03/30/2013 19:15:15" EXPORT_NAME="dynamiclink.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="00002bd31f490ae7d31c25546a2b799a0393d3daf2c7" PROGRAM_ID="0003e99dc810c640969f24d0f87b0a44d74800000904" />
        <MATCHING_FILE NAME="ExtendScript.dll" SIZE="797576" CHECKSUM="0x6B0D1AA7" BIN_FILE_VERSION="4.5.5.30746" BIN_PRODUCT_VERSION="4.5.5.30746" PRODUCT_VERSION="79.535742" FILE_DESCRIPTION="Adobe ExtendScript scripting engine (64 bit)" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="ExtendScript 2013/03/21-12:10:31" FILE_VERSION="4.5.5.30746" ORIGINAL_FILENAME="AdobeExtendScript.dll" INTERNAL_NAME="AdobeExtendScript" LEGAL_COPYRIGHT="© 1998-2012 Adobe Systems Incorporated. All Rights Reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xCA6E1" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="4.5.5.30746" UPTO_BIN_PRODUCT_VERSION="4.5.5.30746" LINK_DATE="03/21/2013 20:28:22" UPTO_LINK_DATE="03/21/2013 20:28:22" EXPORT_NAME="ExtendScript.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="0000921e3af0e664de83d305b37d2f0e62ade7f1aca2" PROGRAM_ID="00033a6344b80e59b9c51940e7a5c17306d400000904" />
        <MATCHING_FILE NAME="FileInfo.dll" SIZE="2753928" CHECKSUM="0x9930A4DC" BIN_FILE_VERSION="5.3.3.30665" BIN_PRODUCT_VERSION="5.3.3.30665" PRODUCT_VERSION="79.151561" FILE_DESCRIPTION="Adobe XMP FileInfo 5.3.0.0-ia003 ( 64 bit )" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="Adobe XMP FileInfo 2013/03/19-12:09:02" FILE_VERSION="5.3.0.0-ia003 ( 64 bit ), 79.151561, 2013/03/19-12:09:02" ORIGINAL_FILENAME="FileInfo.dll" INTERNAL_NAME="AdobeXMPFileInfo" LEGAL_COPYRIGHT="Copyright 2002-2011, Adobe Systems Incorporated. All Rights Reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x2AE7D1" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="5.3.3.30665" UPTO_BIN_PRODUCT_VERSION="5.3.3.30665" LINK_DATE="03/20/2013 03:50:04" UPTO_LINK_DATE="03/20/2013 03:50:04" EXPORT_NAME="FileInfo.dll" VER_LANGUAGE="Language Neutral [0x0]" EXE_WRAPPER="0x0" FILE_ID="0000985e1794f56325721cac6df32c17ebc2dfbe2ff9" PROGRAM_ID="0003a7073aa9fd8e4d0f4c29b1ab4d7cf73e00000000" />
        <MATCHING_FILE NAME="filter_graph.dll" SIZE="1661832" CHECKSUM="0x1B712F5" BIN_FILE_VERSION="5.0.0.1" BIN_PRODUCT_VERSION="5.0.0.1" PRODUCT_VERSION="5.0" FILE_DESCRIPTION="Adobe Image Foundation" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="AIF" FILE_VERSION="5.0.00" ORIGINAL_FILENAME="" INTERNAL_NAME="AIF" LEGAL_COPYRIGHT="© 2005-2010 Adobe Systems Incorporated" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1A320D" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="5.0.0.1" UPTO_BIN_PRODUCT_VERSION="5.0.0.1" LINK_DATE="03/12/2013 21:30:54" UPTO_LINK_DATE="03/12/2013 21:30:54" EXPORT_NAME="filter_graph.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="0000d3bac37dfdb8d082abd7aa2c42cbfa80edd72519" PROGRAM_ID="00034da7b6f62660163971449e009710cd8000000008" />
        <MATCHING_FILE NAME="icucnv40.dll" SIZE="863112" CHECKSUM="0x381EE50D" BIN_FILE_VERSION="4.0.0.0" BIN_PRODUCT_VERSION="4.0.0.0" PRODUCT_VERSION=" Build gtlib_3.0.16615" FILE_DESCRIPTION="IBM ICU Common DLL" COMPANY_NAME="IBM Corporation and others" PRODUCT_NAME="International Components for Unicode 2011/11/15-16:30:22" FILE_VERSION="4, 0, 0, 1012" ORIGINAL_FILENAME="icuuc40.dll" LEGAL_COPYRIGHT=" Copyright (C) 2008, International Business Machines Corporation and others. All Rights Reserved. " VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xDA9C2" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="4.0.0.0" UPTO_BIN_PRODUCT_VERSION="4.0.0.0" LINK_DATE="11/16/2011 04:59:16" UPTO_LINK_DATE="11/16/2011 04:59:16" EXPORT_NAME="icucnv40.dll" VER_LANGUAGE="Language Neutral [0x0]" EXE_WRAPPER="0x0" FILE_ID="00008d81751c5ecee333996687de8d899d3f9adf3f16" PROGRAM_ID="0003c8898e4cfc7bc3918d26bf08bead909300000000" />
        <MATCHING_FILE NAME="icudt40.dll" SIZE="97160" CHECKSUM="0x3C384A9A" BIN_FILE_VERSION="4.0.0.0" BIN_PRODUCT_VERSION="4.0.0.0" PRODUCT_VERSION=" Build gtlib_3.0.16615" FILE_DESCRIPTION="ICU Data DLL" COMPANY_NAME="IBM Corporation and others" PRODUCT_NAME="International Components for Unicode 2011/11/15-16:30:22" FILE_VERSION="4, 0, 0, 1012" ORIGINAL_FILENAME="icudt40.dll" LEGAL_COPYRIGHT=" Copyright (C) 2008, International Business Machines Corporation and others. All Rights Reserved. " VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1E488" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="4.0.0.0" UPTO_BIN_PRODUCT_VERSION="4.0.0.0" LINK_DATE="11/16/2011 05:11:43" UPTO_LINK_DATE="11/16/2011 05:11:43" EXPORT_NAME="icudt40.dll" VER_LANGUAGE="Language Neutral [0x0]" EXE_WRAPPER="0x0" FILE_ID="0000e1d7e572b8c1dca189abf3c02684deb9122e315d" PROGRAM_ID="0003c8898e4cfc7bc3918d26bf08bead909300000000" />
        <MATCHING_FILE NAME="imslib.dll" SIZE="1526656" CHECKSUM="0xB25204BE" BIN_FILE_VERSION="7.0.0.37" BIN_PRODUCT_VERSION="7.0.0.37" PRODUCT_VERSION="7.0.0.37" FILE_DESCRIPTION="IMSLib DLL" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="IMSLib DLL" FILE_VERSION="7.0.0.37" ORIGINAL_FILENAME="IMSLib.dll" INTERNAL_NAME="IMSLib" LEGAL_COPYRIGHT="Copyright 2009-2013 Adobe Systems Incorporated. All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x177278" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.37" UPTO_BIN_PRODUCT_VERSION="7.0.0.37" LINK_DATE="02/18/2013 22:39:28" UPTO_LINK_DATE="02/18/2013 22:39:28" EXPORT_NAME="IMSLib.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="0000139c5f5e171ea8e4d4a596aab69e4cb291b6b447" PROGRAM_ID="00030669f915b92c13aa75a8364a1bc0157b00000904" />
        <MATCHING_FILE NAME="JP2KLib.dll" SIZE="900488" CHECKSUM="0x9B596E60" BIN_FILE_VERSION="1.2.2.29712" BIN_PRODUCT_VERSION="1.2.2.29712" PRODUCT_VERSION="79.248139" FILE_DESCRIPTION="Adobe JPEG2000 Core Library" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="JP2KLib 2013/02/19-12:28:44" FILE_VERSION="1.2.2.29712" ORIGINAL_FILENAME="JP2KLib.dll" INTERNAL_NAME="JP2KLib" LEGAL_COPYRIGHT="© 2009 Adobe Systems Incorporated.
    All Rights Reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xE0934" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.2.2.29712" UPTO_BIN_PRODUCT_VERSION="1.2.2.29712" LINK_DATE="02/19/2013 22:00:58" UPTO_LINK_DATE="02/19/2013 22:00:58" EXPORT_NAME="JP2KLib.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="0000d7dd38ca27ebe9838a014f10deebdeffe18a7754" PROGRAM_ID="0003a4356d1e0af0f1f631a785e9a4702fe100000904" />
        <MATCHING_FILE NAME="libcurl.dll" SIZE="224136" CHECKSUM="0xBA363F2A" MODULE_TYPE="WIN32" PE_CHECKSUM="0x3FED8" LINKER_VERSION="0x0" LINK_DATE="09/24/2009 21:19:10" UPTO_LINK_DATE="09/24/2009 21:19:10" EXPORT_NAME="libcurl.dll" EXE_WRAPPER="0x0" FILE_ID="00009c42d7aeda3673a4ad5383dc8e5e694bfdd85deb" PROGRAM_ID="0003d9c8c8c302a68522eafcb49876ccd6a60000ffff" />
        <MATCHING_FILE NAME="libeay32.dll" SIZE="1293704" CHECKSUM="0xC067BDDB" MODULE_TYPE="WIN32" PE_CHECKSUM="0x140BAB" LINKER_VERSION="0x0" LINK_DATE="09/24/2009 20:59:44" UPTO_LINK_DATE="09/24/2009 20:59:44" EXPORT_NAME="LIBEAY32.dll" EXE_WRAPPER="0x0" FILE_ID="000072b3d30b9d4fd0e3b44655f7e93daf6bab6f0f6e" PROGRAM_ID="000391594acc7608f8acaa56b7bc8e033df00000ffff" />
        <MATCHING_FILE NAME="libexpat.dll" SIZE="135048" CHECKSUM="0x32F39C55" MODULE_TYPE="WIN32" PE_CHECKSUM="0x27A8D" LINKER_VERSION="0x0" LINK_DATE="09/15/2009 19:32:40" UPTO_LINK_DATE="09/15/2009 19:32:40" EXPORT_NAME="libexpat.dll" EXE_WRAPPER="0x0" FILE_ID="000002d3fc9522af433296dc30a771b92abe153fc6e6" PROGRAM_ID="0003a93a9b17a303fe5ad97391f333c0dffd0000ffff" />
        <MATCHING_FILE NAME="libifcoremd.dll" SIZE="1019272" CHECKSUM="0xF11AAD4F" BIN_FILE_VERSION="10.0.101.101" BIN_PRODUCT_VERSION="10.0.101.0" PRODUCT_VERSION="10.0 (Update A)" FILE_DESCRIPTION="Intel(r) Fortran Compiler RTL (thread-safe) " COMPANY_NAME="Intel Corporation" PRODUCT_NAME="Intel(r) Visual Fortran Compiler" FILE_VERSION="10.0 - 101 (Update A)" ORIGINAL_FILENAME="libifcoremd.dll" INTERNAL_NAME="libifcoremd.dll" LEGAL_COPYRIGHT="Copyright (c) 2007 Intel Corporation" VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xFDC94" LINKER_VERSION="0xA0001" UPTO_BIN_FILE_VERSION="10.0.101.101" UPTO_BIN_PRODUCT_VERSION="10.0.101.0" LINK_DATE="08/10/2007 03:01:21" UPTO_LINK_DATE="08/10/2007 03:01:21" EXPORT_NAME="libifcoremd.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="0000e636ddbddb47763cad331da60ff8bddcd7a456d1" PROGRAM_ID="000338c57d212b3a4fda5582c0a1fb61e0a900000904" />
        <MATCHING_FILE NAME="libmmd.dll" SIZE="3255736" CHECKSUM="0xBC604664" BIN_FILE_VERSION="12.0.12.2" BIN_PRODUCT_VERSION="12.0.0.0" PRODUCT_VERSION="12.0" FILE_DESCRIPTION="Math Library for Intel(r) Compilers (thread-safe)" COMPANY_NAME="Intel Corporation" PRODUCT_NAME="Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler" FILE_VERSION="12.0.12.2" ORIGINAL_FILENAME="libmmd.dll" INTERNAL_NAME="libmmd.dll" LEGAL_COPYRIGHT="Copyright (c) 1985-2011 Intel Corporation. All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x0" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x31F729" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="12.0.12.2" UPTO_BIN_PRODUCT_VERSION="12.0.0.0" LINK_DATE="04/11/2012 04:29:02" UPTO_LINK_DATE="04/11/2012 04:29:02" EXPORT_NAME="libmmd.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="00009e0e232c27d684ca55998ef706e33818a1e7880d" PROGRAM_ID="00039254f288d9069c6fe316313fb47f1a9200000904" />
        <MATCHING_FILE NAME="LogSession.dll" SIZE="373128" CHECKSUM="0xAD6FAE18" BIN_FILE_VERSION="2.1.2.1756" BIN_PRODUCT_VERSION="2.1.2.1756" PRODUCT_VERSION="2.1.2.1756" FILE_DESCRIPTION="LogSession" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="LogSession" FILE_VERSION="2.1.2.1756" ORIGINAL_FILENAME="LogSession.dll" INTERNAL_NAME="LogSession" LEGAL_COPYRIGHT="Copyright 2008 - 10 Adobe Systems Incorporated. All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x60C2D" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="2.1.2.1756" UPTO_BIN_PRODUCT_VERSION="2.1.2.1756" LINK_DATE="02/01/2013 20:05:46" UPTO_LINK_DATE="02/01/2013 20:05:46" EXPORT_NAME="LogSession.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="0000fba7156f75d45fb5dac3781d48d7abf2fb759646" PROGRAM_ID="0003452a32482c4e2e34fd0436112b4a55bf00000904" />
        <MATCHING_FILE NAME="LogTransport2.exe" SIZE="465800" CHECKSUM="0x6A98B9F2" BIN_FILE_VERSION="2.1.2.1756" BIN_PRODUCT_VERSION="2.1.2.1756" PRODUCT_VERSION="2.1.2.1756" FILE_DESCRIPTION="LogTransport Application" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME=" LogTransport Application" FILE_VERSION="2.1.2.1756" ORIGINAL_FILENAME="LogTransport2.exe" INTERNAL_NAME="LogTransport2" LEGAL_COPYRIGHT="Copyright 2008 - 10 Adobe Systems Incorporated. All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x79ADF" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="2.1.2.1756" UPTO_BIN_PRODUCT_VERSION="2.1.2.1756" LINK_DATE="02/01/2013 20:05:08" UPTO_LINK_DATE="02/01/2013 20:05:08" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="000017cec290f821e9cf7d7d7c1d9782eef5f718675b" PROGRAM_ID="0003c6359efafce0a2e50439c46fd3103e4700000904" />
        <MATCHING_FILE NAME="mediacoreif.dll" SIZE="3599240" CHECKSUM="0x903DC528" BIN_FILE_VERSION="7.0.0.0" BIN_PRODUCT_VERSION="7.0.0.0" PRODUCT_VERSION="7.0.0" FILE_DESCRIPTION="DVA Product" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="DVA Product" FILE_VERSION="7.0.0.0" ORIGINAL_FILENAME="mediacoreif.dll" INTERNAL_NAME="mediacoreif" LEGAL_COPYRIGHT="Copyright 2013 Adobe Systems Incorporated.  All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x37AE01" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.0.0" UPTO_BIN_PRODUCT_VERSION="7.0.0.0" LINK_DATE="03/30/2013 19:16:49" UPTO_LINK_DATE="03/30/2013 19:16:49" EXPORT_NAME="mediacoreif.dll" VER_LANGUAGE="English (United States) [0x409]" EXE_WRAPPER="0x0" FILE_ID="0000d1e439e058ff029fb718b81e22cdb13361164efa" PROGRAM_ID="0003e99dc810c640969f24d0f87b0a44d74800000904" />
        <MATCHING_FILE NAME="MPS.dll" SIZE="5630856" CHECKSUM="0x637BA2FF" BIN_FILE_VERSION="5.8.1.30604" BIN_PRODUCT_VERSION="5.8.1.30604" PRODUCT_VERSION="79.535029" FILE_DESCRIPTION="Modular Parsing System" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="MPS 2013/03/15-13:25:52" FILE_VERSION="5.8.1.30604" ORIGINAL_FILENAME="MPS.dll" INTERNAL_NAME="MPS" LEGAL_COPYRIGHT="© 1996-2009 Adobe Systems Incorporated. All Rights Reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x56E8EA" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="5.8.1.30604" UPTO_BIN_PRODUCT_VERSION="5.8.1.30604" LINK_DATE="03/15/2013 22:56:19" UPTO_LINK_DATE="03/15/2013 22:56:19" EXPORT_NAME="MPS.dll" VER_LANGUAGE="English (Ireland) [0x800]" EXE_WRAPPER="0x0" FILE_ID="0000374782451afb561c4ff9cf843fa239c7f86b9b9e" PROGRAM_ID="0003feed729a2be41c59f14acb22190d7c7a00000008" />
        <MATCHING_FILE NAME="msvcm80.dll" SIZE="516096" CHECKSUM="0x27017BFA" BIN_FILE_VERSION="8.0.50727.762" BIN_PRODUCT_VERSION="8.0.50727.762" PRODUCT_VERSION="8.00.50727.762" FILE_DESCRIPTION="Microsoft® C Runtime Library" COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="Microsoft® Visual Studio® 2005" FILE_VERSION="8.00.50727.762" ORIGINAL_FILENAME="MSVCM80.DLL" INTERNAL_NAME="MSVCM80.DLL" LEGAL_COPYRIGHT="© Microsoft Corporation.  All rights reserved." VERDATEHI="0x0" VERDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TY

    Hi Chris, that data came form the Microsoft "Photoshop has stopped working" window, when it asks if you want to send data, there are 3 files referenced, I copied the readable one of those - my apologies if that was incorrect, I'm just finding my way round this error/crash reporting stuff.
    From the evet properties window, this is the report, which may be more helpful?
    Faulting application name: Photoshop.exe, version: 14.0.0.0, time stamp: 0x5176451b
    Faulting module name: McPvNs.dll, version: 3.8.130.0, time stamp: 0x519fc202
    Exception code: 0xc0000005
    Fault offset: 0x000000000029cb56
    Faulting process id: 0xd3c
    Faulting application start time: 0x01ce989aa4ac131c
    Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Photoshop.exe
    Faulting module path: C:\Program Files\McAfee\MAT\McPvNs.dll
    Report Id: e6fbd47b-048f-11e3-a44d-6431503f59a5
    Log Name: Application
    Source: Application Error
    Date: 14/08/2013 04:16:26
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer: Workstation-HP
    Description:
    Faulting application name: Photoshop.exe, version: 14.0.0.0, time stamp: 0x5176451b
    Faulting module name: McPvNs.dll, version: 3.8.130.0, time stamp: 0x519fc202
    Exception code: 0xc0000005
    Fault offset: 0x000000000029cb56
    Faulting process id: 0xd3c
    Faulting application start time: 0x01ce989aa4ac131c
    Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Photoshop.exe
    Faulting module path: C:\Program Files\McAfee\MAT\McPvNs.dll
    Report Id: e6fbd47b-048f-11e3-a44d-6431503f59a5
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
    <Level>2</Level>
    <Task>100</Task>
    <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-08-14T03:16:26.000000000Z" />
    <EventRecordID>52388</EventRecordID>
    <Channel>Application</Channel>
    <Computer>Workstation-HP</Computer>
        <Security />
      </System>
      <EventData>
        <Data>Photoshop.exe</Data>
        <Data>14.0.0.0</Data>
        <Data>5176451b</Data>
        <Data>McPvNs.dll</Data>
        <Data>3.8.130.0</Data>
        <Data>519fc202</Data>
        <Data>c0000005</Data>
        <Data>000000000029cb56</Data>
        <Data>d3c</Data>
        <Data>01ce989aa4ac131c</Data>
        <Data>C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Photoshop.exe</Data>
    <Data>C:\Program Files\McAfee\MAT\McPvNs.dll</Data>
        <Data>e6fbd47b-048f-11e3-a44d-6431503f59a5</Data>
      </EventData>
    </Event>
    Does this imply some conflict with McAfee Total Protection software that I have installed?
    What would you suggest that I do?
    I also note that I get very frequent event 1000 reports with FlashPlayerUpdateService.exe listed as the faulting application:
    Faulting application name: FlashPlayerUpdateService.exe, version: 11.6.602.180, time stamp: 0x51a4ab8c
    Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec49b8f
    Exception code: 0xc0000005
    Fault offset: 0x0002e243
    Faulting process id: 0x2584
    Faulting application start time: 0x01ce98ef7107e0e1
    Faulting application path: C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    Faulting module path: C:\Windows\SysWOW64\ntdll.dll
    Report Id: afeba068-04e2-11e3-a44d-6431503f59a5
    Log Name:      Application
    Source:        Application Error
    Date:          14/08/2013 14:09:02
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      Workstation-HP
    Description:
    Faulting application name: FlashPlayerUpdateService.exe, version: 11.6.602.180, time stamp: 0x51a4ab8c
    Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec49b8f
    Exception code: 0xc0000005
    Fault offset: 0x0002e243
    Faulting process id: 0x2584
    Faulting application start time: 0x01ce98ef7107e0e1
    Faulting application path: C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    Faulting module path: C:\Windows\SysWOW64\ntdll.dll
    Report Id: afeba068-04e2-11e3-a44d-6431503f59a5
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-08-14T13:09:02.000000000Z" />
        <EventRecordID>52432</EventRecordID>
        <Channel>Application</Channel>
        <Computer>Workstation-HP</Computer>
        <Security />
      </System>
      <EventData>
        <Data>FlashPlayerUpdateService.exe</Data>
        <Data>11.6.602.180</Data>
        <Data>51a4ab8c</Data>
        <Data>ntdll.dll</Data>
        <Data>6.1.7601.17725</Data>
        <Data>4ec49b8f</Data>
        <Data>c0000005</Data>
        <Data>0002e243</Data>
        <Data>2584</Data>
        <Data>01ce98ef7107e0e1</Data>
        <Data>C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe</Data>
        <Data>C:\Windows\SysWOW64\ntdll.dll</Data>
        <Data>afeba068-04e2-11e3-a44d-6431503f59a5</Data>
      </EventData>
    </Event>
    Should I uninstall Fash?
    Is there another remedy?
    Many thanks
    Andrew

  • Photoshop CC 2014 crashing when I try to open or save

    I am experiencing a crash in Windows 8.1 using the cc2014 Photoshop Update too. The crash occurs whenever I try to open or save. I have tried the solutions that worked for some with previous versions including:
    removing the preference files
    uninstalling and then re-installing
    updating the graphics driver (currently Driver Version 9.18.13.3788 on my Nvidia GTX 460)
    turning off Open GL altogether
    I have not installed any 3rd party plug ins
    CS6 is running fine on this same machine, and I am running CC2014 at work with no problems (on Window 7). I have 24GB of RAM and an i7. I've listed the sytem details below.
    I'd really appreciate if anyone can get me over this hump. I have to get a lot of work done here at home most of the time and spend a  lot of time in Photoshop, so you can imagine, not being able to save is a pretty huge deal.
    Thanks for any assistance in advance.
    Jeff
    Adobe Photoshop Version: 2014.0.0 20140508.r.58 2014/05/08:23:59:59  x64
    Operating System: Windows 8.1 64-bit
    Version: 6.3
    System architecture: Intel CPU Family:6, Model:12, Stepping:2 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 6
    Logical processor count: 12
    Processor speed: 3207 MHz
    Built-in memory: 24567 MB
    Free memory: 20481 MB
    Memory available to Photoshop: 22126 MB
    Memory used by Photoshop: 70 %
    3D Multitone Printing: Disabled.
    Touch Gestures: Disabled.
    Windows 2x UI: Disabled.
    Image tile size: 1024K
    Image cache levels: 4
    Font Preview: Medium
    TextComposer: Latin
    Display: 1
    Display Bounds: top=0, left=0, bottom=1600, right=2560
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    AIFCoreInitialized=1
    AIFOGLInitialized=1
    OGLContextCreated=1
    glgpu[0].GLVersion="3.0"
    glgpu[0].GLMemoryMB=1024
    glgpu[0].GLName="GeForce GTX 460/PCIe/SSE2"
    glgpu[0].GLVendor="NVIDIA Corporation"
    glgpu[0].GLVendorID=4318
    glgpu[0].GLDriverVersion="9.18.13.3788"
    glgpu[0].GLRectTextureSize=16384
    glgpu[0].GLRenderer="GeForce GTX 460/PCIe/SSE2"
    glgpu[0].GLRendererID=3618
    glgpu[0].HasGLNPOTSupport=1
    glgpu[0].GLDriver="nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um"
    glgpu[0].GLDriverDate="20140519000000.000000-000"
    glgpu[0].CanCompileProgramGLSL=1
    glgpu[0].GLFrameBufferOK=1
    glgpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="4.40 NVIDIA via Cg compiler"
    glgpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[1638 4]
    glgpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[4]
    glgpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[192]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[32]
    glgpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[32]
    glgpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[4096]
    glgpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[2048]
    glgpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[124]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[16]
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    glgpu[0].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=1
    clgpu[0].CLPlatformVersion="1.1"
    clgpu[0].CLDeviceVersion="1.1 CUDA"
    clgpu[0].CLMemoryMB=1024
    clgpu[0].CLName="GeForce GTX 460"
    clgpu[0].CLVendor="NVIDIA Corporation"
    clgpu[0].CLVendorID=4318
    clgpu[0].CLDriverVersion="337.88"
    clgpu[0].CUDASupported=1
    clgpu[0].CUDAVersion="6.0.1"
    clgpu[0].CLBandwidth=9.48174e+010
    clgpu[0].CLCompute=264.61
    License Type: Subscription
    Serial number: 94070715703729923839
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014\
    Temporary file path: C:\Users\Jeff\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Z:\, 1.82T, 1.45T free
      H:\, 2.00T, 201.6G free
      E:\, 748.5G, 132.5G free
      C:\, 476.6G, 199.9G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\Plug-Ins\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Plug-ins\
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2014/04/14-23:42:44   79.554120   79.554120
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdbePM.dll   PatchMatch 2014/04/23-10:46:55   79.554276   79.554276
       AdobeLinguistic.dll   Adobe Linguisitc Library   8.0.0  
       AdobeOwl.dll   Adobe Owl 2014/03/05-14:49:37   5.0.33   79.552883
       AdobePDFL.dll   PDFL 2014/03/04-00:39:42   79.510482   79.510482
       AdobePIP.dll   Adobe Product Improvement Program   7.2.1.3399  
       AdobeXMP.dll   Adobe XMP Core 2014/01/13-19:44:00   79.155772   79.155772
       AdobeXMPFiles.dll   Adobe XMP Files 2014/01/13-19:44:00   79.155772   79.155772
       AdobeXMPScript.dll   Adobe XMP Script 2014/01/13-19:44:00   79.155772   79.155772
       adobe_caps.dll   Adobe CAPS   8,0,0,7  
       AGM.dll   AGM 2014/04/14-23:42:44   79.554120   79.554120
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31  
       amtlib.dll   AMTLib (64 Bit)   8.0.0.45 BuildVersion: 8.0; BuildDate: Fri Mar 28 2014 20:28:30)   1.000000
       ARE.dll   ARE 2014/04/14-23:42:44   79.554120   79.554120
       AXE8SharedExpat.dll   AXE8SharedExpat 2013/12/20-21:40:29   79.551013   79.551013
       AXEDOMCore.dll   AXEDOMCore 2013/12/20-21:40:29   79.551013   79.551013
       Bib.dll   BIB 2014/04/14-23:42:44   79.554120   79.554120
       BIBUtils.dll   BIBUtils 2014/04/14-23:42:44   79.554120   79.554120
       boost_date_time.dll   photoshopdva   8.0.0  
       boost_signals.dll   photoshopdva   8.0.0  
       boost_system.dll   photoshopdva   8.0.0  
       boost_threads.dll   photoshopdva   8.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.2.6.32411   2.2.6.32411
       CITThreading.dll   Adobe CITThreading   2.2.6.32411   2.2.6.32411
       CoolType.dll   CoolType 2014/04/14-23:42:44   79.554120   79.554120
       dvaaudiodevice.dll   photoshopdva   8.0.0  
       dvacore.dll   photoshopdva   8.0.0  
       dvamarshal.dll   photoshopdva   8.0.0  
       dvamediatypes.dll   photoshopdva   8.0.0  
       dvametadata.dll   photoshopdva   8.0.0  
       dvametadataapi.dll   photoshopdva   8.0.0  
       dvametadataui.dll   photoshopdva   8.0.0  
       dvaplayer.dll   photoshopdva   8.0.0  
       dvatransport.dll   photoshopdva   8.0.0  
       dvaui.dll   photoshopdva   8.0.0  
       dvaunittesting.dll   photoshopdva   8.0.0  
       dynamiclink.dll   photoshopdva   8.0.0  
       ExtendScript.dll   ExtendScript 2014/01/21-23:58:55   79.551519   79.551519
       icucnv40.dll   International Components for Unicode 2013/02/25-15:59:15    Build gtlib_4.0.19090  
       icudt40.dll   International Components for Unicode 2013/02/25-15:59:15    Build gtlib_4.0.19090  
       imslib.dll   IMSLib DLL   7.0.0.145  
       JP2KLib.dll   JP2KLib 2014/03/12-08:53:44   79.252744   79.252744
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libiomp5md.dll   Intel(R) OpenMP* Runtime Library   5.0  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   7.2.1.3399  
       mediacoreif.dll   photoshopdva   8.0.0  
       MPS.dll   MPS 2014/03/25-23:41:34   79.553444   79.553444
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CC 2014   15.0  
       Plugin.dll   Adobe Photoshop CC 2014   15.0  
       PlugPlugExternalObject.dll   Adobe(R) CEP PlugPlugExternalObject Standard Dll (64 bit)   5.0.0  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   5.0.0.74  
       PSArt.dll   Adobe Photoshop CC 2014   15.0  
       PSViews.dll   Adobe Photoshop CC 2014   15.0  
       SCCore.dll   ScCore 2014/01/21-23:58:55   79.551519   79.551519
       ScriptUIFlex.dll   ScriptUIFlex 2014/01/20-22:42:05   79.550992   79.550992
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 2, 2013, 1114  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 2, 2013, 1114  
       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   7.0.1.102 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   7.0.1.102
       VulcanControl.dll   Vulcan Application Control Library   5.0.0.82  
       VulcanMessage5.dll   Vulcan Message Library   5.0.0.82  
       WRServices.dll   WRServices Fri Mar 07 2014 15:33:10   Build 0.20204   0.20204
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 15.0 (2014.0.0 x001)
       Accented Edges 15.0
       Adaptive Wide Angle 15.0
       Angled Strokes 15.0
       Average 15.0 (2014.0.0 x001)
       Bas Relief 15.0
       BMP 15.0
       Camera Raw 8.5
       Camera Raw Filter 8.5
       Chalk & Charcoal 15.0
       Charcoal 15.0
       Chrome 15.0
       Cineon 15.0 (2014.0.0 x001)
       Clouds 15.0 (2014.0.0 x001)
       Collada 15.0 (2014.0.0 x001)
       Color Halftone 15.0
       Colored Pencil 15.0
       CompuServe GIF 15.0
       Conté Crayon 15.0
       Craquelure 15.0
       Crop and Straighten Photos 15.0 (2014.0.0 x001)
       Crop and Straighten Photos Filter 15.0
       Crosshatch 15.0
       Crystallize 15.0
       Cutout 15.0
       Dark Strokes 15.0
       De-Interlace 15.0
       Dicom 15.0
       Difference Clouds 15.0 (2014.0.0 x001)
       Diffuse Glow 15.0
       Displace 15.0
       Dry Brush 15.0
       Eazel Acquire 15.0 (2014.0.0 x001)
       Embed Watermark 4.0
       Entropy 15.0 (2014.0.0 x001)
       Export Color Lookup NO VERSION
       Extrude 15.0
       FastCore Routines 15.0 (2014.0.0 x001)
       Fibers 15.0
       Film Grain 15.0
       Filter Gallery 15.0
       Flash 3D 15.0 (2014.0.0 x001)
       Fresco 15.0
       Glass 15.0
       Glowing Edges 15.0
       Google Earth 4 15.0 (2014.0.0 x001)
       Grain 15.0
       Graphic Pen 15.0
       Halftone Pattern 15.0
       HDRMergeUI 15.0
       IFF Format 15.0
       Ink Outlines 15.0
       JPEG 2000 15.0
       Kurtosis 15.0 (2014.0.0 x001)
       Lens Blur 15.0
       Lens Correction 15.0
       Lens Flare 15.0
       Liquify 15.0
       Matlab Operation 15.0 (2014.0.0 x001)
       Maximum 15.0 (2014.0.0 x001)
       Mean 15.0 (2014.0.0 x001)
       Measurement Core 15.0 (2014.0.0 x001)
       Median 15.0 (2014.0.0 x001)
       Mezzotint 15.0
       Minimum 15.0 (2014.0.0 x001)
       MMXCore Routines 15.0 (2014.0.0 x001)
       Mosaic Tiles 15.0
       Multiprocessor Support 15.0 (2014.0.0 x001)
       Neon Glow 15.0
       Note Paper 15.0
       NTSC Colors 15.0 (2014.0.0 x001)
       Ocean Ripple 15.0
       OpenEXR 15.0
       Paint Daubs 15.0
       Palette Knife 15.0
       Patchwork 15.0
       Paths to Illustrator 15.0
       PCX 15.0 (2014.0.0 x001)
       Photocopy 15.0
       Photoshop 3D Engine 15.0 (2014.0.0 x001)
       Photoshop Touch 14.0
       Picture Package Filter 15.0 (2014.0.0 x001)
       Pinch 15.0
       Pixar 15.0 (2014.0.0 x001)
       Plaster 15.0
       Plastic Wrap 15.0
       PNG 15.0
       Pointillize 15.0
       Polar Coordinates 15.0
       Portable Bit Map 15.0 (2014.0.0 x001)
       Poster Edges 15.0
       Radial Blur 15.0
       Radiance 15.0 (2014.0.0 x001)
       Range 15.0 (2014.0.0 x001)
       Read Watermark 4.0
       Render Color Lookup Grid NO VERSION
       Reticulation 15.0
       Ripple 15.0
       Rough Pastels 15.0
       Save for Web 15.0
       ScriptingSupport 15.0
       Shake Reduction 15.0
       Shear 15.0
       Skewness 15.0 (2014.0.0 x001)
       Smart Blur 15.0
       Smudge Stick 15.0
       Solarize 15.0 (2014.0.0 x001)
       Spatter 15.0
       Spherize 15.0
       Sponge 15.0
       Sprayed Strokes 15.0
       Stained Glass 15.0
       Stamp 15.0
       Standard Deviation 15.0 (2014.0.0 x001)
       STL 15.0 (2014.0.0 x001)
       Sumi-e 15.0
       Summation 15.0 (2014.0.0 x001)
       Targa 15.0
       Texturizer 15.0
       Tiles 15.0
       Torn Edges 15.0
       Twirl 15.0
       Underpainting 15.0
       Vanishing Point 15.0
       Variance 15.0 (2014.0.0 x001)
       Water Paper 15.0
       Watercolor 15.0
       Wave 15.0
       Wavefront|OBJ 15.0 (2014.0.0 x001)
       WIA Support 15.0 (2014.0.0 x001)
       Wind 15.0
       Wireless Bitmap 15.0 (2014.0.0 x001)
       ZigZag 15.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash: NONE
    Installed TWAIN devices: NONE

    You originally posted on a thread that really wasn't related to your problem, so I branched the discussion.
    Check the Windows System Event Viewer to see the details of the crash, most importantly the name of the faulting module.
    Most crashes on Open or Save are due to OS bugs (especially on MacOS) or bugs in third party extensions to the OS open and save dialogs.

  • Photoshop CS6 Crashing when I "Save for Web" Windows OS

      Problem Event Name:
    APPCRASH
      Application Name:
    Photoshop.exe
      Application Version:
    13.0.1.0
      Application Timestamp:
    5022da52
      Fault Module Name:
    StackHash_ec98
      Fault Module Version:
    6.1.7601.17514
      Fault Module Timestamp:
    4ce7ba58
      Exception Code:
    c0000374
      Exception Offset:
    000ce653
      OS Version:
    6.1.7601.2.1.0.256.48
      Locale ID:
    1033
      Additional Information 1:
    ec98
      Additional Information 2:
    ec981b04b878b0b3ba501bd9b5d90082
      Additional Information 3:
    e5c6
      Additional Information 4:
    e5c69ffa87bfce7aafaa3bbf9aff6e96
    Pretty much the title, if anyother information is needed feel free to ask.
    Here is my system info:
    Adobe Photoshop Version: 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00) x32
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 4
    Processor speed: 2893 MHz
    Built-in memory: 4079 MB
    Free memory: 1082 MB
    Memory available to Photoshop: 3255 MB
    Memory used by Photoshop: 70 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 7700 Series
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 900, right: 1600
    Video Card Number: 1
    Video Card: AMD Radeon HD 7700 Series
    OpenCL Unavailable
    Driver Version: 13.152.1.8000
    Driver Date: 20131008000000.000000-000
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1600 x 900 x 4294967296 colors
    Video Card Caption: AMD Radeon HD 7700 Series
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: 92628701192123445467
    Application folder: C:\Program Files (x86)\Adobe\Adobe Photoshop CS6\
    Temporary file path: C:\Users\CHRIST~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 931.3G, 22.3G free
    Required Plug-ins folder: C:\Program Files (x86)\Adobe\Adobe Photoshop CS6\Required\
    Primary Plug-ins folder: C:\Program Files (x86)\Adobe\Adobe Photoshop CS6\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/06/05-15:16:32   66.507768   66.507768
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/06/26-12:17:19   4.0.95   66.510504
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/06/05-15:16:32   66.507768   66.507768
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/06/05-15:16:32   66.507768   66.507768
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/06/05-15:16:32   66.507768   66.507768
       BIBUtils.dll   BIBUtils 2012/06/05-15:16:32   66.507768   66.507768
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/06/05-15:16:32   66.507768   66.507768
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       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.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       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.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       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.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (32 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       shfolder.dll   Microsoft(R) Windows (R) 2000 Operating System   5.50.4027.300  
       ssleay32.dll   The OpenSSL Toolkit   0.9.8g  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       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   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Clouds 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Collada 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Difference Clouds 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Embed Watermark 4.0
       Extrude 13.0
       FastCore Routines 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Measurement Core 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Mezzotint 13.0
       MMXCore Routines 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Picture Package Filter 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Pinch 13.0
       Pixar 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0.1
       Shear 13.0
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Sumi-e 13.0
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       Underpainting 13.0
       Vanishing Point 13.0
       Variations 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       WIA Support 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE
    Sorry about long post, no spoilers or anything that I could find!

    Your problem is StackHash_ec98 error.  Do a web search for this and see if any of the suggestions work.  Beware of offers to buy their product to fix problem.

  • Photoshop error: could not complete the save command because there is not enough memory

    This happens occasionally and it makes me crazy, causing me to lose hours of work! I have lots of ram remaining. I have no plugins installed, windows 8. Please see below for system information:
    ================
    Adobe Photoshop Version: 14.2.1 (14.2.1 20140207.r.570 2014/02/07:23:00:00) x64
    Operating System: Windows 8 64-bit
    Version: 6.2
    System architecture: Intel CPU Family:6, Model:12, Stepping:3 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2394 MHz
    Built-in memory: 16304 MB
    Free memory: 12478 MB
    Memory available to Photoshop: 14591 MB
    Memory used by Photoshop: 90 %
    Image tile size: 1024K
    Image cache levels: 4
    Font Preview: Medium
    TextComposer: Middle Eastern and South Asian
    Display: 1
    Display Bounds: top=0, left=0, bottom=1080, right=1920
    Display: 2
    Display Bounds: top=0, left=1920, bottom=1200, right=3840
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    AIFCoreInitialized=1
    AIFOGLInitialized=1
    OGLContextCreated=1
    NumGPUs=1
    gpu[0].OGLVersion="3.0"
    gpu[0].MemoryMB=2048
    gpu[0].RectTextureSize=16384
    gpu[0].Renderer="GeForce GTX 765M/PCIe/SSE2"
    gpu[0].RendererID=4577
    gpu[0].Vendor="NVIDIA Corporation"
    gpu[0].VendorID=4318
    gpu[0].HasNPOTSupport=1
    gpu[0].DriverVersion="9.18.13.2723"
    gpu[0].Driver="nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um"
    gpu[0].DriverDate="20130912000000.000000-000"
    gpu[0].CompileProgramGLSL=1
    gpu[0].TestFrameBuffer=1
    gpu[0].OCLPresent=1
    gpu[0].OCLVersion="1.1"
    gpu[0].CUDASupported=1
    gpu[0].CUDAVersion="4.2.1"
    gpu[0].OCLBandwidth=4.89598e+010
    gpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="4.30 NVIDIA via Cg compiler"
    gpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[16384]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[4]
    gpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[192]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[32]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[32]
    gpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[4096]
    gpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[2048]
    gpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[124]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[16]
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=1
    License Type: Subscription
    Serial number: 90970903167992058536
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\
    Temporary file path: C:\Users\Tevi\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      E:\, 476.9G, 364.2G free
      D:\, 931.5G, 396.4G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Required\Plug-Ins\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Plug-ins\
    Installed components:
       ACE.dll   ACE 2013/10/29-11:47:16   79.548223   79.548223
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdobeLinguistic.dll   Adobe Linguisitc Library   7.0.0  
       AdobeOwl.dll   Adobe Owl 2013/10/25-12:15:59   5.0.24   79.547804
       AdobePDFL.dll   PDFL 2013/10/29-11:47:16   79.508720   79.508720
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1786  
       AdobeXMP.dll   Adobe XMP Core 2013/10/29-11:47:16   79.154911   79.154911
       AdobeXMPFiles.dll   Adobe XMP Files 2013/10/29-11:47:16   79.154911   79.154911
       AdobeXMPScript.dll   Adobe XMP Script 2013/10/29-11:47:16   79.154911   79.154911
       adobe_caps.dll   Adobe CAPS   7,0,0,21  
       AGM.dll   AGM 2013/10/29-11:47:16   79.548223   79.548223
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31  
       aif_core.dll   AIF   5.0   79.534508
       aif_ocl.dll   AIF   5.0   79.534508
       aif_ogl.dll   AIF   5.0   79.534508
       amtlib.dll   AMTLib (64 Bit)   7.0.0.249 BuildVersion: 7.0; BuildDate: Thu Nov 14 2013 15:55:50)   1.000000
       ARE.dll   ARE 2013/10/29-11:47:16   79.548223   79.548223
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2013/10/29-11:47:16   79.548223   79.548223
       BIBUtils.dll   BIBUtils 2013/10/29-11:47:16   79.548223   79.548223
       boost_date_time.dll   DVA Product   7.0.0  
       boost_signals.dll   DVA Product   7.0.0  
       boost_system.dll   DVA Product   7.0.0  
       boost_threads.dll   DVA Product   7.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.1.6.30929   2.1.6.30929
       CITThreading.dll   Adobe CITThreading   2.1.6.30929   2.1.6.30929
       CoolType.dll   CoolType 2013/10/29-11:47:16   79.548223   79.548223
       dvaaudiodevice.dll   DVA Product   7.0.0  
       dvacore.dll   DVA Product   7.0.0  
       dvamarshal.dll   DVA Product   7.0.0  
       dvamediatypes.dll   DVA Product   7.0.0  
       dvaplayer.dll   DVA Product   7.0.0  
       dvatransport.dll   DVA Product   7.0.0  
       dvaunittesting.dll   DVA Product   7.0.0  
       dynamiclink.dll   DVA Product   7.0.0  
       ExtendScript.dll   ExtendScript 2013/10/30-13:12:12   79.546835   79.546835
       FileInfo.dll   Adobe XMP FileInfo 2013/10/25-03:51:33   79.154511   79.154511
       filter_graph.dll   AIF   5.0   79.534508
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       imslib.dll   IMSLib DLL   7.0.0.145  
       JP2KLib.dll   JP2KLib 2013/10/29-11:47:16   79.248139   79.248139
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libiomp5md.dll   Intel(R) OMP Runtime Library   5.0  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   2.1.2.1785  
       mediacoreif.dll   DVA Product   7.0.0  
       MPS.dll   MPS 2013/10/29-11:47:16   79.535029   79.535029
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.8428  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.8428  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.8428  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       PatchMatch.dll   PatchMatch 2013/10/29-11:47:16   79.542390   79.542390
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CC   CC  
       Plugin.dll   Adobe Photoshop CC   CC  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   4.2.0.36  
       PSArt.dll   Adobe Photoshop CC   CC  
       PSViews.dll   Adobe Photoshop CC   CC  
       SCCore.dll   ScCore 2013/10/30-13:12:12   79.546835   79.546835
       ScriptUIFlex.dll   ScriptUIFlex 2013/10/30-13:12:12   79.546835   79.546835
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       updaternotifications.dll   Adobe Updater Notifications Library   7.0.1.102 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   7.0.1.102
       WRServices.dll   WRServices Mon Feb 25 2013 16:09:10   Build 0.19078   0.19078
    Required plug-ins:
       3D Studio 14.2.1 (14.2.1 x001)
       Accented Edges 14.2.1
       Adaptive Wide Angle 14.2.1
       Angled Strokes 14.2.1
       Average 14.2.1 (14.2.1 x001)
       Bas Relief 14.2.1
       BMP 14.2.1
       Camera Raw 8.3
       Camera Raw Filter 8.3
       Chalk & Charcoal 14.2.1
       Charcoal 14.2.1
       Chrome 14.2.1
       Cineon 14.2.1 (14.2.1 x001)
       Clouds 14.2.1 (14.2.1 x001)
       Collada 14.2.1 (14.2.1 x001)
       Color Halftone 14.2.1
       Colored Pencil 14.2.1
       CompuServe GIF 14.2.1
       Conté Crayon 14.2.1
       Craquelure 14.2.1
       Crop and Straighten Photos 14.2.1 (14.2.1 x001)
       Crop and Straighten Photos Filter 14.2.1
       Crosshatch 14.2.1
       Crystallize 14.2.1
       Cutout 14.2.1
       Dark Strokes 14.2.1
       De-Interlace 14.2.1
       Dicom 14.2.1
       Difference Clouds 14.2.1 (14.2.1 x001)
       Diffuse Glow 14.2.1
       Displace 14.2.1
       Dry Brush 14.2.1
       Eazel Acquire 14.2.1 (14.2.1 x001)
       Embed Watermark 4.0
       Entropy 14.2.1 (14.2.1 x001)
       Extrude 14.2.1
       FastCore Routines 14.2.1 (14.2.1 x001)
       Fibers 14.2.1
       Film Grain 14.2.1
       Filter Gallery 14.2.1
       Flash 3D 14.2.1 (14.2.1 x001)
       Fresco 14.2.1
       Glass 14.2.1
       Glowing Edges 14.2.1
       Google Earth 4 14.2.1 (14.2.1 x001)
       Grain 14.2.1
       Graphic Pen 14.2.1
       Halftone Pattern 14.2.1
       HDRMergeUI 14.2.1
       IFF Format 14.2.1
       Ink Outlines 14.2.1
       JPEG 2000 14.2.1
       Kurtosis 14.2.1 (14.2.1 x001)
       Lens Blur 14.2.1
       Lens Correction 14.2.1
       Lens Flare 14.2.1
       Liquify 14.2.1
       Matlab Operation 14.2.1 (14.2.1 x001)
       Maximum 14.2.1 (14.2.1 x001)
       Mean 14.2.1 (14.2.1 x001)
       Measurement Core 14.2.1 (14.2.1 x001)
       Median 14.2.1 (14.2.1 x001)
       Mezzotint 14.2.1
       Minimum 14.2.1 (14.2.1 x001)
       MMXCore Routines 14.2.1 (14.2.1 x001)
       Mosaic Tiles 14.2.1
       Multiprocessor Support 14.2.1 (14.2.1 x001)
       Neon Glow 14.2.1
       Note Paper 14.2.1
       NTSC Colors 14.2.1 (14.2.1 x001)
       Ocean Ripple 14.2.1
       Oil Paint 14.2.1
       OpenEXR 14.2.1
       Paint Daubs 14.2.1
       Palette Knife 14.2.1
       Patchwork 14.2.1
       Paths to Illustrator 14.2.1
       PCX 14.2.1 (14.2.1 x001)
       Photocopy 14.2.1
       Photoshop 3D Engine 14.2.1 (14.2.1 x001)
       Photoshop Touch 14.0
       Picture Package Filter 14.2.1 (14.2.1 x001)
       Pinch 14.2.1
       Pixar 14.2.1 (14.2.1 x001)
       Plaster 14.2.1
       Plastic Wrap 14.2.1
       PNG 14.2.1
       Pointillize 14.2.1
       Polar Coordinates 14.2.1
       Portable Bit Map 14.2.1 (14.2.1 x001)
       Poster Edges 14.2.1
       Radial Blur 14.2.1
       Radiance 14.2.1 (14.2.1 x001)
       Range 14.2.1 (14.2.1 x001)
       Read Watermark 4.0
       Reticulation 14.2.1
       Ripple 14.2.1
       Rough Pastels 14.2.1
       Save for Web 14.2.1
       ScriptingSupport 14.2.1
       Shake Reduction 14.2.1
       Shear 14.2.1
       Skewness 14.2.1 (14.2.1 x001)
       Smart Blur 14.2.1
       Smudge Stick 14.2.1
       Solarize 14.2.1 (14.2.1 x001)
       Spatter 14.2.1
       Spherize 14.2.1
       Sponge 14.2.1
       Sprayed Strokes 14.2.1
       Stained Glass 14.2.1
       Stamp 14.2.1
       Standard Deviation 14.2.1 (14.2.1 x001)
       STL 14.2.1 (14.2.1 x001)
       Sumi-e 14.2.1
       Summation 14.2.1 (14.2.1 x001)
       Targa 14.2.1
       Texturizer 14.2.1
       Tiles 14.2.1
       Torn Edges 14.2.1
       Twirl 14.2.1
       Underpainting 14.2.1
       Vanishing Point 14.2.1
       Variance 14.2.1 (14.2.1 x001)
       Variations 14.2.1 (14.2.1 x001)
       Water Paper 14.2.1
       Watercolor 14.2.1
       Wave 14.2.1
       Wavefront|OBJ 14.2.1 (14.2.1 x001)
       WIA Support 14.2.1 (14.2.1 x001)
       Wind 14.2.1
       Wireless Bitmap 14.2.1 (14.2.1 x001)
       ZigZag 14.2.1
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Adobe Exchange
       Kuler
    Installed TWAIN devices: NONE

    I've also purged undo and history, and still no luck. I tried doing Save as... and attempted to duplicate layers to a new file, and even tryied to "convert to smart object", but everything I try throws the not enough memory error.
    My system shows me using 3.7G/15.9G
    12.2 available
    6.3G/35.5G committed
    I also have 2 very large scratch disks available (with hundreds of available gigs), including a very fast SSD, and standard 7200 disk.

  • 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

  • Save for web crashes - Win7 64bit, Photoshop CC 14

    Intermittently save for web and other function (usually related to saving) crash. I'm running a brand new Win7 64bit box with latest version of CC - Photoshop CC 14. It's crash list thing since I first got Photoshop - so it's not something new, it's been doing this since I have installed the software. I have no 3rd party plugins installed and Photoshop doesn't give me a crash report when it does crash.
    System Info:
    Adobe Photoshop Version: 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:13, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 6
    Logical processor count: 12
    Processor speed: 3500 MHz
    Built-in memory: 16308 MB
    Free memory: 13523 MB
    Memory available to Photoshop: 14646 MB
    Memory used by Photoshop: 60 %
    Image tile size: 1024K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 1.2 AMD-APP (1124.2)
    OpenGL Version: 3.0
    Video Rect Texture Size: 16384
    OpenGL Memory: 2048 MB
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 7700 Series
    Display: 1
    Display Bounds: top=0, left=0, bottom=1080, right=1920
    Video Card Number: 1
    Video Card: AMD Radeon HD 7700 Series
    Driver Version: 12.104.0.0
    Driver Date: 20130328000000.000000-000
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: AMD Radeon HD 7700 Series
    Video Card Memory: 2048 MB
    Serial number: 91190111881300291898
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\
    Temporary file path: C:\Users\Sean\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 238.4G, 128.2G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Plug-ins\
    Installed components:
       ACE.dll   ACE 2013/03/19-12:09:02   79.535293   79.535293
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdobeLinguistic.dll   Adobe Linguisitc Library   7.0.0  
       AdobeOwl.dll   Adobe Owl 2013/03/03-12:10:08   5.0.13   79.533484
       AdobePDFL.dll   PDFL 2013/03/13-12:09:15   79.499517   79.499517
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1768  
       AdobeXMP.dll   Adobe XMP Core 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPFiles.dll   Adobe XMP Files 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPScript.dll   Adobe XMP Script 2013/03/13-12:09:15   79.151481   79.151481
       adobe_caps.dll   Adobe CAPS   7,0,0,21  
       AGM.dll   AGM 2013/03/29-12:09:59   79.536232   79.536232
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31  
       aif_core.dll   AIF   5.0   79.534508
       aif_ocl.dll   AIF   5.0   79.534508
       aif_ogl.dll   AIF   5.0   79.534508
       amtlib.dll   AMTLib (64 Bit)   7.0.0.169 BuildVersion: 7.0; BuildDate: Mon Apr 8 2013 2:31:50)   1.000000
       ARE.dll   ARE 2013/03/19-12:09:02   79.535293   79.535293
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2013/03/19-12:09:02   79.535293   79.535293
       BIBUtils.dll   BIBUtils 2013/03/19-12:09:02   79.535293   79.535293
       boost_date_time.dll   DVA Product   7.0.0  
       boost_signals.dll   DVA Product   7.0.0  
       boost_system.dll   DVA Product   7.0.0  
       boost_threads.dll   DVA Product   7.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.1.6.30158   2.1.6.30158
       CITThreading.dll   Adobe CITThreading   2.1.6.30158   2.1.6.30158
       CoolType.dll   CoolType 2013/03/19-12:09:02   79.535293   79.535293
       dvaaudiodevice.dll   DVA Product   7.0.0  
       dvacore.dll   DVA Product   7.0.0  
       dvamarshal.dll   DVA Product   7.0.0  
       dvamediatypes.dll   DVA Product   7.0.0  
       dvaplayer.dll   DVA Product   7.0.0  
       dvatransport.dll   DVA Product   7.0.0  
       dvaunittesting.dll   DVA Product   7.0.0  
       dynamiclink.dll   DVA Product   7.0.0  
       ExtendScript.dll   ExtendScript 2013/03/21-12:10:31   79.535742   79.535742
       FileInfo.dll   Adobe XMP FileInfo 2013/03/19-12:09:02   79.151561   79.151561
       filter_graph.dll   AIF   5.0   79.534508
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       imslib.dll   IMSLib DLL   7.0.0.37  
       JP2KLib.dll   JP2KLib 2013/02/19-12:28:44   79.248139   79.248139
       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   12.0  
       LogSession.dll   LogSession   2.1.2.1756  
       mediacoreif.dll   DVA Product   7.0.0  
       MPS.dll   MPS 2013/03/15-13:25:52   79.535029   79.535029
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       PatchMatch.dll   PatchMatch 0000/00/00-00:00:00   1.   1.
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CC   CC  
       Plugin.dll   Adobe Photoshop CC   CC  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   4.0.1.34  
       PSArt.dll   Adobe Photoshop CC   CC  
       PSViews.dll   Adobe Photoshop CC   CC  
       SCCore.dll   ScCore 2013/03/21-12:10:31   79.535742   79.535742
       ScriptUIFlex.dll   ScriptUIFlex 2013/03/21-12:10:31   79.535742   79.535742
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       updaternotifications.dll   Adobe Updater Notifications Library   7.0.1.102 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   7.0.1.102
       WRServices.dll   WRServices Mon Feb 25 2013 16:09:10   Build 0.19078   0.19078
    Required plug-ins:
       3D Studio 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Accented Edges 14.0
       Adaptive Wide Angle 14.0
       Angled Strokes 14.0
       Average 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Bas Relief 14.0
       BMP 14.0
       Camera Raw 8.1
       Camera Raw Filter 8.1
       Chalk & Charcoal 14.0
       Charcoal 14.0
       Chrome 14.0
       Cineon 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Clouds 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Collada 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Color Halftone 14.0
       Colored Pencil 14.0
       CompuServe GIF 14.0
       Conté Crayon 14.0
       Craquelure 14.0
       Crop and Straighten Photos 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Crop and Straighten Photos Filter 14.0
       Crosshatch 14.0
       Crystallize 14.0
       Cutout 14.0
       Dark Strokes 14.0
       De-Interlace 14.0
       Dicom 14.0
       Difference Clouds 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Diffuse Glow 14.0
       Displace 14.0
       Dry Brush 14.0
       Eazel Acquire 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Embed Watermark 4.0
       Entropy 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Extrude 14.0
       FastCore Routines 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Fibers 14.0
       Film Grain 14.0
       Filter Gallery 14.0
       Flash 3D 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Fresco 14.0
       Glass 14.0
       Glowing Edges 14.0
       Google Earth 4 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Grain 14.0
       Graphic Pen 14.0
       Halftone Pattern 14.0
       HDRMergeUI 14.0
       IFF Format 14.0
       Ink Outlines 14.0
       JPEG 2000 14.0
       Kurtosis 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Lens Blur 14.0
       Lens Correction 14.0
       Lens Flare 14.0
       Liquify 14.0
       Matlab Operation 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Maximum 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mean 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Measurement Core 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Median 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mezzotint 14.0
       Minimum 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       MMXCore Routines 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mosaic Tiles 14.0
       Multiprocessor Support 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Neon Glow 14.0
       Note Paper 14.0
       NTSC Colors 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Ocean Ripple 14.0
       Oil Paint 14.0
       OpenEXR 14.0
       Paint Daubs 14.0
       Palette Knife 14.0
       Patchwork 14.0
       Paths to Illustrator 14.0
       PCX 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Photocopy 14.0
       Photoshop 3D Engine 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Picture Package Filter 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Pinch 14.0
       Pixar 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Plaster 14.0
       Plastic Wrap 14.0
       PNG 14.0
       Pointillize 14.0
       Polar Coordinates 14.0
       Portable Bit Map 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Poster Edges 14.0
       Radial Blur 14.0
       Radiance 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Range 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Read Watermark 4.0
       Reticulation 14.0
       Ripple 14.0
       Rough Pastels 14.0
       Save for Web 14.0
       ScriptingSupport 14.0
       Shake Reduction 14.0
       Shear 14.0
       Skewness 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Smart Blur 14.0
       Smudge Stick 14.0
       Solarize 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Spatter 14.0
       Spherize 14.0
       Sponge 14.0
       Sprayed Strokes 14.0
       Stained Glass 14.0
       Stamp 14.0
       Standard Deviation 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       STL 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Sumi-e 14.0
       Summation 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Targa 14.0
       Texturizer 14.0
       Tiles 14.0
       Torn Edges 14.0
       Twirl 14.0
       Underpainting 14.0
       Vanishing Point 14.0
       Variance 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Variations 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Water Paper 14.0
       Watercolor 14.0
       Wave 14.0
       Wavefront|OBJ 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       WIA Support 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Wind 14.0
       Wireless Bitmap 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       ZigZag 14.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Adobe Exchange
       Kuler
    Installed TWAIN devices: NONE

    Thanks Chris,
    Here is the latest crash details from Event Viewer, it also crashes intermittently when I open documents, this is a crash from opening a document today.
    Faulting application name: Photoshop.exe, version: 14.0.0.0, time stamp: 0x5176451b
    Faulting module name: ntdll.dll, version: 6.1.7601.18205, time stamp: 0x51dba4e7
    Exception code: 0xc0000005
    Fault offset: 0x0000000000027b0b
    Faulting process id: 0x2fa4
    Faulting application start time: 0x01cea063426c74fe
    Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Photoshop.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: 715dd1e4-1044-11e3-8c24-7c05070d23cd

  • Photoshop CS5 crashes whenever I try to save a file

    Recently, my graphics card stopped working, so I've been forced to use an onboard GPU until I can get the money to buy a new one. The problem though, is that the onboard GPU is VERY old (approximately 6 or so years), and every time I try to save something in photoshop CS5, the program crashes without even giving me an error message. How do I fix this? Does the graphics card even have anything to do with it? I'm using Windows XP by the way.

    I found an "error" entry in the Event Viewer that mentions Photoshop, but no "warning" ones. Here's what the error entry says:
    Faulting application photoshop.exe, version 12.1.0.0, faulting module photoshop.exe, version 12.1.0.0, fault address 0x017a9179.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Also, here's the system info data from photoshop's help > system info:
    Adobe Photoshop Version: 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch]) x32
    Operating System: Windows XP 32-bit
    Version: 5.1 Service Pack 3
    System architecture: Intel CPU Family:15, Model:4, Stepping:1 with MMX, SSE Integer, SSE FP, SSE2, SSE3
    Physical processor count: 1
    Processor speed: 2793 MHz
    Built-in memory: 2046 MB
    Free memory: 156 MB
    Memory available to Photoshop: 1571 MB
    Memory used by Photoshop: 70 %
    Image tile size: 128K
    Image cache levels: 4
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 768, right: 1024
    Video Card Number: 1
    Video Card: Intel(R) 82865G Graphics Controller
    Driver Version: 6.14.10.4396
    Driver Date: 20050920150054.000000-000
    Video Card Driver: ialmrnt5.dll
    Video Mode: 1024 x 768 x 4294967296 colors
    Video Card Caption: Intel(R) 82865G Graphics Controller
    Video Card Memory: 96 MB
    Serial number: [removed by admin]
    Application folder: F:\My Programs\Adobe\Photoshop CS5\Adobe Photoshop CS5.1\
    Temporary file path: C:\DOCUME~1\Owner\LOCALS~1\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 33.8G, 1.71G free
    Primary Plug-ins folder: F:\My Programs\Adobe\Photoshop CS5\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.4053  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.4148  
       msvcp71.dll   Microsoft® Visual Studio .NET   7.10.3077.0  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.4053  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.4148  
       msvcr71.dll   Microsoft® Visual Studio .NET   7.10.3052.4  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.4053  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.4148  
       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:
       3D Studio 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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.3
       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])
       Collada 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
       Dicom 12.0
       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
       Entropy 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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
       Google Earth 4 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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
       Kurtosis 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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])
       Maximum 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Mean 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])
       Median 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Mezzotint 12.0.2
       Minimum 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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
       Photoshop 3D Engine 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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])
       Range 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
       Skewness 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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
       Standard Deviation 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Sumi-e 12.0
       Summation 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Targa 12.0.2
       Texturizer 12.0
       Tiles 12.0.2
       Torn Edges 12.0
       Twirl 12.0.2
       U3D 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Underpainting 12.0
       Vanishing Point 12.0
       Variance 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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
       Wavefront|OBJ 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       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

  • Save for Web error: Could not complete operation

    Hi everyone.
    I'm having trouble using the Save For Web function on Photoshop CS6. The initial dialog opens fine and I can select any file type to save to etc.
    Once I click 'Save...' I get the error "Could not complete this operation. An unknown operating system error has occurred."
    I have looked up this error and from previous threads I have tried deleting the Save for Web library files and restarting, however this doesn't work (Unless I am deleting the wrong file?).
    I'm running a 2.6 GHz Retina Macbook Pro with the latest update installed for Photoshop. I have 16 GB ram.
    Strangely, I have a PC running the same version of Photoshop CS6 and it works fine for this function.
    Any idea what this could be? I have posted my system info below.
    Adobe Photoshop Version: 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00) x64
    Operating System: Mac OS 10.8.2
    System architecture: Intel CPU Family:6, Model:58, Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2600 MHz
    Built-in memory: 16384 MB
    Free memory: 9800 MB
    Memory available to Photoshop: 14647 MB
    Memory used by Photoshop: 70 %
    Image tile size: 1024K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 1.2 (Sep 20 2012 17:42:28)
    OpenGL Version: 2.1
    Video Rect Texture Size: 16384
    OpenGL Memory: 980 MB
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: NVIDIA GeForce GT 650M OpenGL Engine
    Display: 2
    Display Depth: 32
    Display Bounds: top=-73, left=-1920, bottom=1127, right=0
    Video Renderer ID: 16918087
    Video Card Memory: 1024 MB
    Display: 1
    Main Display
    High DPI Monitor
    Display Depth: 32
    Display Bounds: top=0, left=0, bottom=900, right=1440
    Video Renderer ID: 16918087
    Video Card Memory: 1024 MB
    Serial number: 90970206655000210709
    Application folder: /Applications/Adobe Photoshop CS6/
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Macintosh HD, 233.0G, 70.2G free
    Required Plug-ins folder: /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/
    Primary Plug-ins folder: /Applications/Adobe Photoshop CS6/Plug-ins/
    Additional Plug-ins folder: not set
    Installed components:
       adbeape.framework   adbeape   3.3.8.19346   66.1025012
       AdbeScriptUIFlex.framework   AdbeScriptUIFlex   6.2.29.18602   66.490082
       adobe_caps.framework   adobe_caps   6.0.29.0   1.276181
       AdobeACE.framework   AdobeACE   2.19.18.20743   66.507768
       AdobeAGM.framework   AdobeAGM   4.26.20.20743   66.507768
       AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.7.101.18636   66.26830
       AdobeAXEDOMCore.framework   AdobeAXEDOMCore   3.7.101.18636   66.26830
       AdobeBIB.framework   AdobeBIB   1.2.02.20743   66.507768
       AdobeBIBUtils.framework   AdobeBIBUtils   1.1.01   66.507768
       AdobeCoolType.framework   AdobeCoolType   5.10.33.20743   66.507768
       AdobeCrashReporter.framework   AdobeCrashReporter   6.0.20120720  
       AdobeExtendScript.framework   AdobeExtendScript   4.2.12.18602   66.490082
       AdobeJP2K.framework   AdobeJP2K   2.0.0.18562   66.236923
       AdobeLinguistic.framework      17206  
       AdobeMPS.framework   AdobeMPS   5.8.0.19463   66.495174
       AdobeOwl.framework   AdobeOwl   5.0.4   79.517869
       AdobePDFL.framework   AdobePDFL   10.0.1.18562   66.419471
       AdobePDFSettings.framework   AdobePDFSettings   1.4  
       AdobePIP.framework   AdobePIP   7.0.0.1686  
       AdobeScCore.framework   AdobeScCore   4.2.12.18602   66.490082
       AdobeUpdater.framework   AdobeUpdater   6.0.0.1452   "52.338651"
       AdobeXMP.framework   AdobeXMPCore   66.145661   66.145661
       AdobeXMPFiles.framework   AdobeXMPFiles   66.145661   66.145661
       AdobeXMPScript.framework   AdobeXMPScript   66.145661   66.145661
       ahclient.framework   ahclient   1.7.0.56  
       aif_core.framework   AdobeAIF   3.0.00   62.490293
       aif_ocl.framework   AdobeAIF   3.0.00   62.490293
       aif_ogl.framework   AdobeAIF   3.0.00   62.490293
       AlignmentLib.framework   xcode   1.0.0.1  
       amtlib.framework   amtlib   6.0.0.75  
       boost_date_time.framework   boost_date_time   6.0.0.0  
       boost_signals.framework   boost_signals   6.0.0.0  
       boost_system.framework   boost_system   6.0.0.0  
       boost_threads.framework   boost_threads   6.0.0.0  
       Cg.framework   NVIDIA Cg     
       CIT.framework   CIT   2.1.0.20577   146758
       data_flow.framework   AdobeAIF   3.0.00   62.490293
       dvaaudiodevice.framework   dvaaudiodevice   6.0.0.0  
       dvacore.framework   dvacore   6.0.0.0  
       dvamarshal.framework   dvamarshal   6.0.0.0  
       dvamediatypes.framework   dvamediatypes   6.0.0.0  
       dvaplayer.framework   dvaplayer   6.0.0.0  
       dvatransport.framework   dvatransport   6.0.0.0  
       dvaunittesting.framework   dvaunittesting   6.0.0.0  
       dynamiclink.framework   dynamiclink   6.0.0.0  
       FileInfo.framework   FileInfo   66.145433   66.145433
       filter_graph.framework   AdobeAIF   3.0.00   62.490293
       hydra_filters.framework   AdobeAIF   3.0.00   62.490293
       ICUConverter.framework   ICUConverter   3.61   "gtlib_3.0" "." "16615"
       ICUData.framework   ICUData   3.61   "gtlib_3.0" "." "16615"
       image_compiler.framework   AdobeAIF   3.0.00   62.490293
       image_flow.framework   AdobeAIF   3.0.00   62.490293
       image_runtime.framework   AdobeAIF   3.0.00   62.490293
       LogSession.framework   LogSession   2.1.2.1681  
       mediacoreif.framework   mediacoreif   6.0.0.0  
       PlugPlug.framework   PlugPlug   3.0.0.383  
       UpdaterNotifications.framework   UpdaterNotifications   6.0.0.24   "6.0.0.24"
       wrservices.framework        
    Required plug-ins:
       3D Studio 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Accented Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Adaptive Wide Angle 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “Adaptive Wide Angle.plugin”
       Angled Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Average 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Average.plugin”
       Bas Relief 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       BMP 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Camera Raw 7.3 (71), Copyright © 2012 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Chalk & Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Chrome 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Cineon 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2002-2012 Adobe Systems Incorporated - from the file “Cineon.plugin”
       Clouds 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Collada DAE 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Color Halftone 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Colored Pencil 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       CompuServe GIF 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Conté Crayon 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Craquelure 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crop and Straighten Photos 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2003-2012 Adobe Systems Incorporated - from the file “CropPhotosAuto.plugin”
       Crop and Straighten Photos Filter 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Crosshatch 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crystallize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Cutout 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Dark Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       De-Interlace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dicom 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “dicom.plugin”
       Difference Clouds 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Diffuse Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Displace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dry Brush 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Eazel Acquire 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1997-2012 Adobe Systems Incorporated - from the file “EazelAcquire.plugin”
       Embed Watermark NO VERSION - from the file “DigiSign.plugin”
       Entropy 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Extrude 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       FastCore Routines 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “FastCore.plugin”
       Fibers 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Film Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Filter Gallery 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Flash 3D 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Fresco 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glowing Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Google Earth 4 KMZ 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Graphic Pen 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Halftone Pattern 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       HDRMergeUI 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “HDRMergeUI.plugin”
       IFF Format 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Ink Outlines 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       JPEG 2000 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2001-2012 Adobe Systems Incorporated - from the file “JPEG2000.plugin”
       Kurtosis 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Lens Blur 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Blur.plugin”
       Lens Correction 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Correct.plugin”
       Lens Flare 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Liquify 13.0, Copyright © 2001-2012 Adobe Systems Incorporated - from the file “Liquify.plugin”
       Matlab Operation 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Maximum 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mean 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Measurement Core 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “MeasurementCore.plugin”
       Median 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mezzotint 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Minimum 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       MMXCore Routines 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “MMXCore.plugin”
       Mosaic Tiles 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Multiprocessor Support 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “MultiProcessor Support.plugin”
       Neon Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Note Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       NTSC Colors 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “NTSC Colors.plugin”
       Ocean Ripple 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Oil Paint 13.0, Copyright © 2011 Adobe Systems Incorporated - from the file “Oil Paint.plugin”
       OpenEXR 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Paint Daubs 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Palette Knife 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Patchwork 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Paths to Illustrator 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       PCX 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “PCX.plugin”
       Photocopy 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Photoshop 3D Engine 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “Photoshop3DEngine.plugin”
       Picture Package Filter 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Pinch 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pixar 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “Pixar.plugin”
       Plaster 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Plastic Wrap 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       PNG 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pointillize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Polar Coordinates 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Portable Bit Map 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “PBM.plugin”
       Poster Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Radial Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Radiance 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2003-2012 Adobe Systems Incorporated - from the file “Radiance.plugin”
       Range 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Read Watermark NO VERSION - from the file “DigiRead.plugin”
       Reticulation 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Ripple 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Rough Pastels 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Save for Web 13.0, Copyright © 1999-2012 Adobe Systems Incorporated - from the file “Save for Web.plugin”
       ScriptingSupport 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “ScriptingSupport.plugin”
       Shear 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Skewness 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Smart Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smudge Stick 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Solarize 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Solarize.plugin”
       Spatter 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Spherize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Sponge 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sprayed Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stained Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stamp 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Standard Deviation 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       STL 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Sumi-e 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Summation 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Targa 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Texturizer 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Tiles 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Torn Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Twirl 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Underpainting 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Vanishing Point 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “VanishingPoint.plugin”
       Variance 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Water Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Watercolor 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Wave 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wavefront|OBJ 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Wind 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wireless Bitmap 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “WBMP.plugin”
       ZigZag 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       FontShop
       GuideGuide
       Kuler
    Installed TWAIN devices: NONE

    I found the solution (took forever to consolidate all the answers) for OS X 10.9 + Maverick. Finally!
    1. Change permissions (as AOTPR says) to your User/Library/Preferences file so that your admin and user (the one you are using) has read + write permissions within the Get Info pane (command+I). You may have to add them with the sign.
    2. Delete Adobe save for web 12.0 Prefs & Adobe save for web 13.0 Prefs files within the User/ Library/ Preferences folder. These may be hidden for some people, so when in a finder window, hold Option(alt) and click Go from the main top menu (keep holding Option/Alt) and click Library — the full Preferences folder should open for you.
    3. Change the view when in Save for web pane in PS. If you have it in Cover Flow — it won't work. Change it to another view like List or Columns view.
    Presto! Works for me on Maverick.
    Thank god. It took forever to get this cleared up!!
    If you have any questions, email me [email protected]

Maybe you are looking for

  • 24" cinema display with a 27" iMac as a two monitor setup.

    I have just purchased a second hand 24" cinema display to use as with my 27" iMac as a twomonitor setup. Connected it up and weked fine fot two days. Now it keep flashing on & off never more than a fraction of a second. I connected it to my MacBook P

  • Ipod nano 3rd gen. doesnt have sound during videos

    i upload videos into itunes and they play fine, with sound. after converting to ipod format the sound is lost. the video is fine, but the sound is either absent or loud crackling. help please!

  • Deletion Flag for WBS element

    In what situation we can use a deletion Flag. Once we set a deletion Flag for the WBS element, what are the impacts, i mean what can be done and what cannot be for that particular project.

  • Insert Year in F4 help

    Hi Guys, I have a requirement to add only year(Like 2000,2001,2002..) to one of the field. Whenever user clicks on F4, the Year list should populate and the mentioned year is entered in the field. Is there any way to achieve this? Cheers:)

  • What to do if my iPod is locked for over 23 million minutes?

    I didn't do anything to my iPod and it locked for over 23 million minutes. I can't reboot/restart/ the thing to make it like a brand new ipod. what should i do? Its a iPod 2nd Generation.