Photoshop program error when type tool is selected

I've been trying to use the type tool in Photoshop and I am able to select the tool, however as soon as I place the cursor on my document, I get a program error. From there, I have to force quit the program to get out of it. I downloaded a security update for my mac yesterday, but since I haven't been using the type tool in photoshop recently, I'm not sure if that had anything to do with this issue or not. Has anyone had the same problem?
would appreciate any help. Thank you.

Let me clarify. I'm running Mac OS X v. 10.4.11, Photoshop CS4. The error message just says "Could not complete your request because of program error". I haven't uploaded any new fonts to my system, however, I have deleted some that were suspect of being corrupt. I cannot change fonts on the type tool because it doesn't give me a chance, the error message pops up instantly. I have reset my tools and deleted my preferences and even reinstalled Photoshop CS4 but nothing has worked.

Similar Messages

  • Picasa corrupts IPTC, Photoshop Program Error when saving

    I am having a problem editing some JPGs in Photoshop.  Some JPGs will open fine, but I can't save them.  I get the error that Photoshop can not continue because of a program error (very generic error if ever there was one).  After several hours researching, I've come to the conclusion that some IPTC data is "corrupt" (actually, "problematic" is probably a better word).  Experimenting with some different files, I've figured out the common attribute amongst the files that won't save: I adjusted the date and time on them usng Google Picasa.
    How do I fix this?
    Note: reinstalling Photoshop, deleting preferences, rebooting, etc...  are not valid suggestions (also, I've already tried all that).  There is no problem with my system, it's definitely some type of incompatability between Picasa and Photoshop.  In the future, I won't use Picasa to modify meta data, but for now, I have photos from 2 separate trips that I'd like to edit and can't.
    Thanks in advance for any help you can offer, this has been driving me crazy!
    Additional info:
    I'm using CS4.  The problem occurs in both 64 bit and 32 bit versions of the software.  In addition to being unable to save, I am also unable to open up the File Info dialog box.  I am running Windows 7 Home Premium, 64 bit on a quad core with 4 GB of RAM.  I have plenty of free harddrive space.  I have the Production Premium CS4 suite installed and no other Adobe software installed (well, other than Acrobat Reader and Flash Player).

    Hi Paul.  I noticed this in the documentation for exiftools, which I suspect maybe related to the problem:
    Commonly, in JPEG images, the DateTimeOriginal, CreateDate and
    ModifyDate values must all be changed. For convenience, a shortcut tag
    called AllDates has been defined to represent these three tags.
    So I ran the following command:
    exiftool "-AllDates-=0:0:0 0:0:1" *.jpg
    But all that did was shift all the dates by 1 second, the various fields still don't match.  Do you know the syntax to update all the date fields to match?  Right now according to Picasa the "Camera Date" and "File Date" match and are correct, "Digitized Date" and "Modified Date" are off by an hour.

  • Program error when using tools

    I have Elements 9 and am getting an error message when trying to use most of my tools.  I just installed this so don't have alot of experience with the program.  What is causing this? I went to the programs/elements9 and set my user preference to access all, and it still does not work. I have a Windows XP.

    See if a reset of the pse 9 preferences helps:
    If you just installed it, maybe your images are in color mode or bit depth that some tools won't work on.
    On an image that the tools generate a message on, go to Image>Mode and see if choosing RGB Color and 8 bits/channel makes any difference.
    What does the error message say?
    http://help.adobe.com/en_US/photoshopelements/using/WS287f927bd30d4b1f626a494c12e28b3ab58- 7fe2.html

  • Photoshop CS4 "Program Error" when using Text tool

    Hello. I was having problems with Photoshop displaying a "Program Error" every so often, so I deleted the preference file and all seemed good. But after deleting the preference file for my Photoshop CS4 and re-launching Photoshop, the text tool causes Photoshop to display a Program Error when using the tool. It never did this before. Should I reinstall Photoshop? I am using a Powermac G5 running 10.5.8. I have already tried repairing the disk permissions.
    Thanks

    Thats kinda what I thought too, but the problem started happening randomly. It started when we were trying to use photomerge with large photos. The program just started giving the program errors. I still think it may be a font problem, but without going through my 2000+ fonts and disabling them one by one, how can I resolve this issue?
    Thanks

  • Color picker does not work, " program error when I click, photoshop cc

    I am user of photoshiop cc and it worked fine until several days ago but suddenly it shows " program error " when I click color picker, and I can not use changing color. Please help me to resolve this issue.

    There was a bug with photoshop CC concerning the color picker and its swatches. Make sure you have the latest version and then if it still exists, reset your tools in the upper left hand corner which would be the very first icon in the top tool bar. That should fix it. If not let us know and maybe someone can think of something else.

  • Program error: Object type of receiver cannot be determined

    Hello Experts,
                   Am getting this error "Program error: Object type of receiver cannot be determined" when creating internal orders using BAPI_INTERNALORDERS_CREATE. I read many forums, but they are not answered. I didn't get any solution. Any Solution Please.
    Thanks in Advance

    Here is my Code
    TYPE-POOLS : TRUXS.
    TYPES:BEGIN OF TY_COAS_SVALD,
          AUART TYPE AUFART,         "Order Type
          BUKRS TYPE BUKRS,          "Company Code
          KTEXT TYPE AUFTEXT,        "Description
          GSBER TYPE GSBER,          "Business Area
          WERKS TYPE WERKS_D,        "plant
          KDAUF TYPE KDAUF,          "Sales Order Number
          KDPOS TYPE KDPOS,          "Item
          USER0 TYPE AUFUSER0,       "Applicant
          USER1 TYPE AUFUSER1,       "Applicant's telephone number
          USER2 TYPE AUFUSER2,       "Person responsible
          USER6 TYPE AUFUSER6,       "Department
          KOKRS TYPE KOKRS,          "Controlling area
          AUFWAERS TYPE AUFWAERS,    "Currency
          END   OF TY_COAS_SVALD .
    DATA : IT_RETURN LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    DATA:T_COAS TYPE STANDARD TABLE OF TY_COAS_SVALD INITIAL SIZE 0,
        WA_COAS TYPE  TY_COAS_SVALD.
    PARAMETERs : p_file TYPE IBIPPARMS-PATH.
    at SELECTION-SCREEN on VALUE-REQUEST FOR p_file.
      PERFORM browse_file.
    INITIALIZATION.
      CLEAR:WA_COAS.
      REFRESH:T_COAS.
    START-OF-SELECTION.
    PERFORM LOAD_FLAT_FILE.
    PERFORM SUB_CALL_BAPI_FOR_KO01.
    FORM browse_file .
    CALL FUNCTION 'F4_FILENAME'
    IMPORTING
       FILE_NAME           = p_file
    ENDFORM.                    " browse_file
    FORM LOAD_FLAT_FILE .
    DATA : LT_RAW TYPE TRUXS_T_TEXT_DATA.
      CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
        EXPORTING
          I_FIELD_SEPERATOR          = 'X'
         I_LINE_HEADER              = 'X'
          I_TAB_RAW_DATA             = LT_RAW
          I_FILENAME                 = P_FILE
        TABLES
          I_TAB_CONVERTED_DATA       = T_COAS
       EXCEPTIONS
         CONVERSION_FAILED          = 1
         OTHERS                     = 2
      IF SY-SUBRC <> 0.
      ENDIF.
    ENDFORM.                    " LOAD_FLAT_FILE
    FORM SUB_CALL_BAPI_FOR_KO01 .
      DATA:L_MASTERDATA  TYPE BAPI2075_7,
           LE_MASTERDATA TYPE BAPI2075_2,
           T_BAPI TYPE STANDARD TABLE OF BAPI2075_6 INITIAL SIZE 0,
           WA_BAPI TYPE BAPI2075_6.
    clear:l_masterdata,
          le_masterdata,
          wa_bapi.
    refresh:t_bapi.
      LOOP AT T_COAS INTO WA_COAS.
      L_MASTERDATA-ORDER_TYPE = WA_COAS-AUART.
      L_MASTERDATA-COMP_CODE = WA_COAS-BUKRS.
      L_MASTERDATA-ORDER_NAME = WA_COAS-KTEXT.
      L_MASTERDATA-PLANT = WA_COAS-WERKS.
      L_MASTERDATA-BUS_AREA = WA_COAS-GSBER.
      L_MASTERDATA-SALES_ORD = WA_COAS-KDAUF.
      L_MASTERDATA-S_ORD_ITEM = WA_COAS-KDPOS.
      L_MASTERDATA-APPLICANT = WA_COAS-USER0.
      L_MASTERDATA-APPLICANT_PHONE = WA_COAS-USER1.
      L_MASTERDATA-PERSON_RESP = WA_COAS-USER2.
      L_MASTERDATA-DEPARTMENT = WA_COAS-USER6.
      L_MASTERDATA-CO_AREA = WA_COAS-KOKRS.
      L_MASTERDATA-CURRENCY = WA_COAS-AUFWAERS.
      WA_BAPI-SALES_ORD = WA_COAS-KDAUF.
      WA_BAPI-S_ORD_ITEM = WA_COAS-KDPOS.
      WA_BAPI-COMP_CODE = WA_COAS-BUKRS.
      APPEND WA_BAPI TO T_BAPI.
    CALL FUNCTION 'BAPI_INTERNALORDER_CREATE'
          EXPORTING
            I_MASTER_DATA       = L_MASTERDATA
    IMPORTING
       E_MASTER_DATA       = LE_MASTERDATA
    TABLES
       SRULES              = T_BAPI
       RETURN              = IT_RETURN
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
      ENDLOOP.
      WRITE : / IT_RETURN-TYPE, IT_RETURN-MESSAGE.
    ENDFORM.                    " SUB_CALL_BAPI_FOR_KO01

  • Why do I get a program error when changing colors?

    I get a 'Could not complete your request because of a program error' when I try to change colors on both the forground/background palette or from the color picker palette.  Is there a patch for this?
    I am using Photoshop CS6 version 13.0.1.x64

    Hi. Because this forum is for beginners trying to learn the basics of Photoshop, I'm moving your question to the Photoshop General Discussion forum.

  • Windows 7: CS6: Getting a Program Error when flipping foreground and background colors

    Yesterday, I started getting an error when trying to set the default colors and then flipping them. I also get a program error when I try to click on the foreground color and manually assigning it with white.
    This is a Windows 7 Ultimate, with PS CS6.
    I closed the program twice and ran into the same problem, then rebooted and got the same errors.  As far as I can tell, this is the only tool or feature acting up, other than the actions which have this step in them.
    Looking for an easy fix first, of course.  Like maybe deleting the Prefs file? Mac people seem to have to do that regularly.
    But, if nothing works, will I need to uninstall PS and reinstall it? Would that also mean I'd have to install all of my filter packages again, too?
    Thanks in advance,
    M. Jackson

    Noel,
    To date, I have only restarted PS, and only rebooted and restarted PS.
    I have not done any other steps. I am open to anything that keeps me from having to reload, mainly because of all of the filters, presets, actions, and so forth I'd have to find to reload from scratch.
    And, please note, I am on a PC. The Command-Shift-Option is a Mac command. I assume, on a PC that would be Control-Shift-Alt?
    Thanks again,
    Mike Jackson

  • ERROR OGG-01148 programming error, data type not supported for column

    I am getting following error when I put null in insert statement
    2011-03-31 18:30:45 ERROR OGG-01148 programming error, data type not supported for column TXID in table advoss.tblaudittrail.
    I am replicating MySQL 5.5.9 to Oracle 11g rel2 via goldengate 11

    I am able to diagnose what is cuasing the problem
    unsigned flag was the culprit of this error
    I am able to insert null after removing unsigned flag.
    thank you very much for your kind support

  • A keyboard shortcut from Type tool to Selection tool

    I'm in a text box so I cannot use 'Space' +my normal key shortcut to change to the Selection tool. It's a long way to go with the mouse each time I need to do this. Depressing the CMD key changes the cursor to the Selection tool while I hold it down, but letting CMD up leaves me in the Type tool and in the text box, even if I click outside the text box while holding down CMD. In Illustrator I use a shortcut with OPT or CTRL but this does not work in InDesign.
    Any ideas? I hope Adobe clears this up since not having a quick way to bounce back from Type tool to Selection tool via the keyboard is a real drag on a 30" screen.

    I too use F1 for the Selection Tool and F2 for the Direct Selection Tool. I've also set F3 as the Preview button (previously the W key) and F4 is Scale Tool and F5 is Rotate Tool.
    The great thing about assigning these keys to F Keys rather than character keys it means even if you have a cursor flashing in a text frame you can still switch tools without having to deselect the text frame. What prompted me to look into this was when I once noticed a rogue V and A in a text frame on a job I was designing! If it had gone to print with these letters showing I would have been in a lot of bother so I changed it. This shortcut was discussed on an early episode of InDesign Secrets Podcast :-)
    I'd certainly recommend changing this potentially problematic shortcut, it's quite easy to to hit the V key when a text frame is live but out of sight on another page and then you have a superfluous character in your artwork.
    If only I could remap the zoom tool to the Control key I'd be very happy. Does anyone know how to do that or is it embedded in the structure of the app?
    David

  • Program error when using the Eyedropper tool on Win8/Photoshop CC (14.2.1)

    After a year of using Photoshop CC (with many errors I still have to cope with) there is a new one. Whenever I use the color picker I get an error message, that the quest can not be done for a program error. I click close and I can use the new color but I can not see it in the tool bar preview. This really disturbs my flow while working a great deal (always clicking the error message away, never having a color preview). I am annoyed paying 25 € per month for so many error, just because Photoshop is considered a standard in the industry.

    First Part System Info:
    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:10, Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 2
    Logical processor count: 4
    Processor speed: 2494 MHz
    Built-in memory: 3798 MB
    Free memory: 1788 MB
    Memory available to Photoshop: 3114 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    Font Preview: Medium
    TextComposer: Latin
    Display: 1
    Display Bounds: top=0, left=0, bottom=1080, right=1920
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Basic
    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=1962
    gpu[0].RectTextureSize=16384
    gpu[0].Renderer="Intel(R) HD Graphics 4000"
    gpu[0].RendererID=4416
    gpu[0].Vendor="Intel"
    gpu[0].VendorID=4318
    gpu[0].HasNPOTSupport=1
    gpu[0].DriverVersion="10.18.10.3316"
    gpu[0].Driver="igdumdim64.dll,igd10iumd64.dll,igd10iumd64.dll,igdumdim32,igd10iumd32,igd10 iumd32"
    gpu[0].DriverDate="20131001000000.000000-000"
    gpu[0].CompileProgramGLSL=1
    gpu[0].TestFrameBuffer=1
    gpu[0].OCLPresent=1
    gpu[0].OCLVersion="1.2 "
    gpu[0].CUDASupported=0
    gpu[0].OCLBandwidth=0
    gpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="1.30 - Build 10.18.10.3316"
    gpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[1447]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[8]
    gpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[96]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[16]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[16]
    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]=[4096]
    gpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[64]
    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

  • Program error when try to use 3D repousse in Photoshop CS5 extended?

    Please help!!!! Unable to use 3D repousse Photoshop CS5 Extended  (my system info is described below)
    I tried almost everything that is available in Adobe library help, also re-installed programs as requested by Adobe support (suspected to get rid of me), it did not solve the problem.
    I used to have 3D capabilities, and also crop tool worked well before (now it changes all layers when using crop even in background).  My PC is same,  nor I downloaded plugins or changed video cards (these things are too advanced for me!), also restored preferences many times.
    My system makes automatic updates, reviewed graphics and adobe as recommended.
    OpenGL settings is odd …only can access basic, other modes are not highlighted (normal or advanced).
    ERRORS (for 3D Text)    
    1-“Your 3D scene now exceeds the limits of lights and/or textures for the video card’s hardware-accelerated 3D rendering. As long as the limits are exceeded, 3D rendering will be done in software only, and some features (e.g Repousse)will be disabled.”
    2- “Your video card does not meet the requirements for hardware-accelerated 3D rendering. All 3D will be rendered with software only “
    3-“ Could no complete the text layer command because of a program error”
    ERROR (for object)
    Open GL/GPU HARDWARE ACCELERATION IS CURRENTLY  DISABLED. 3D WILL NOW BE RENDERED WITH SOFTWARE ONLY.  TO ENABLE OPEN/GL  ACCELERATION, GO TO PREFERENCES > PERFORMANCE TAB AND CHECK THE “ENABLE OPENGL GRAWING” CHECK BOX.
    Is it possible that I have a GPU Sniffer? all these terms I have learned recently =)   but I have a healthy & capable graphic card and accepted by adobe standards.
    SYSTEM INFO 
    Adobe Photoshop Version: 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch]) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:5, Stepping:2 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 4
    Processor speed: 2128 MHz
    Built-in memory: 3895 MB
    Free memory: 2210 MB
    Memory available to Photoshop: 3280 MB
    Memory used by Photoshop: 70 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: False.
    OpenGL Crash File: Not Detected.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: Intel
    Video Card Renderer: Intel(R) Graphics Media Accelerator HD
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 768, right: 1360
    Video Card Number: 1
    Video Card: Intel(R) Graphics Media Accelerator HD
    Driver Version: 8.15.10.1968
    Driver Date: 20091008000000.000000-000
    Video Card Driver: igdumd64.dll,igd10umd64.dll,igdumdx32,igd10umd32
    Video Mode: 1360 x 768 x 4294967296 colors
    Video Card Caption: Intel(R) Graphics Media Accelerator HD
    Video Card Memory: 1723 MB
    Serial number: 
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS5.1 (64 Bit)\
    Temporary file path: C:\Users\Patricia\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 284.6G, 218.5G free
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS5.1 (64 Bit)\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 (64 Bit)   4.0.0.21 (BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00)   1.000000
    amtservices.dll   AMTServices (64 Bit)   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
    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.4940  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.4940  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.4940  
       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 (64 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
       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
       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])
       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

    thank you for replying...but it seems an easy answer again  like one given by support....I had photoshop working perfectly before with same video card, I think in one project I clicked something in program (photoshop)that was not ready to correct it by itself... It should be available for the program to give warning several times to the user, I do not know what made Photoshop to disable OpenGL settings, and not be able to reverse action!!!!!  How do I change a GPU sniffer?  I an not a tech, all these things I just learned reading....had spent hundreds of hours....really dissapointed of Adobe and  its support....it is not fair to sell an expensive program without support, it seems to me that  I know now more than a live customer support.

  • PhotoShop CS2 "Program Error" when printing

    I am posting this to the Adobe Forums as well, but thought someone here might have some ideas. am having an intermittent problem printing from PhotoShop CS2 to an Epson 9800. When printing large files (200 MB average) to the Epson, PhotoShop will spool the job, taking about 50% longer than normal, and when complete, displays the following message..."The file XXXX.tif could not be printed because of a program error" No job ever gets to the print que. This happens about 80% of the time when printing. Quitting and restarting PhotoShop generally fixes the problem, and the file can be printed from another computer without issue, so this is not file specific. I have 8GB of RAM installed and PhotoShop running under 100% available memory, cache level at 8, with a dedicated 180GB scratch disk. Memory should NOT be the problem, though I do often have the full layered version of the file open in the background (I am printing from a flattened copy. I have observed that the problem is less likely to occur if no other files are open. I have a second G5 with the exact same software setup (OS, Print Driver and PhotoShop down to the decimal version #) that works perfectly every time. I have run all of the System utilities (Repair Permissions, FSCK, etc), reset the OSX printing system, reset PS preferences, trashed and re installed CS, as well as the Epson printer driver, all with no success. Any other trouble shooting ideas would be greatly appreciated. I would love to avoid a System reinstall.

    See the Adobe Knowledge Base document"Error 'Could not complete your request...' or 'Could not create a new document...' (Photoshop CS2 on Mac OS X v10.4)"
    I suggest whenever you have problems with third-party applications, the first place to start troubleshooting is with the application's documentation, then vendor's web site. Usually their sites have FAQs, lists of known bugs, or application-specific forums similar to these Discussions. Sometimes, unlike the Apple Discussions, the questions are even answered by employees of the vendor.
    The document cited above was found in 10 seconds by searching the Adobe support site.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • Photoshop CC 2014.2.2 program error when I place a layer or open a new file

    I have just updated to the most recent PS CC2014 version. Twice, in fact, and the same problem persists. At some point while working on a file it will become impossible to place a new layer or open a new file. Other program functions work, but these will produce an error message: "Could not complete your request because of a program error." It's very frustrating and the only solution is to restart the program which will run fine for a while and then do it again.
    Is anyone else experiencing this? Or better still, has anyone found a solution to this issue?
    Richard

    I am experiencing a similiar problem.
    Ever since I upgraded to CC I have received this error after using Photoshop for more than 5 mins, or trying to performing tasks such as: placing a linked file, copying and pasting, dragging and dropping an image or even using "File>Open"
    I did a complete system clean install of Yosemite, and reinstalled CC completely 3 times.
    Any assistance in resolving would be greatly appreciated!
    Error Log Text:
    2015:01:06 13:41:33 : tracked key 0000000000001468 of type P5_ADsc not found : 1 : REQUIRE failed
    2015:01:06 13:41:33 : /Volumes/workarea/PS_15_Mac_Daily_Retail/20141204.r.310/photoshop/main/photoshop/xcode/.. /interfaces/UTrackResourceImp.h : 137 : REQUIRE failed
    2015:01:06 13:41:33 : tracked key 00000000000010C0 of type P5_ADsc not found : 1 : REQUIRE failed
    2015:01:06 13:41:33 : /Volumes/workarea/PS_15_Mac_Daily_Retail/20141204.r.310/photoshop/main/photoshop/xcode/.. /interfaces/UTrackResourceImp.h : 137 : REQUIRE failed
    2015:01:06 13:41:33 : tracked key 0000000000000E38 of type P5_ADsc not found : 1 : REQUIRE failed
    2015:01:06 13:41:33 : /Volumes/workarea/PS_15_Mac_Daily_Retail/20141204.r.310/photoshop/main/photoshop/xcode/.. /interfaces/UTrackResourceImp.h : 137 : REQUIRE failed
    2015:01:06 13:41:33 : tracked key 0000000000000460 of type P5_ADsc not found : 1 : REQUIRE failed
    2015:01:06 13:41:33 : /Volumes/workarea/PS_15_Mac_Daily_Retail/20141204.r.310/photoshop/main/photoshop/xcode/.. /interfaces/UTrackResourceImp.h : 137 : REQUIRE failed

  • "Program error" when I try to import video as layers - Photoshop CC

    I am running Photoshop CC trial version and am unable to import a video as layers. I seem to be able to do eveything else, just not this.
    I have Quicktime7 running as well, but that hasn't made a difference. I keep getting the message: "Could not complete your request because of a program error".
    Can anyone help me?

    I'm having the exact same problem, using a macbook pro retina 10.9.
    Whenever I try to select 'Video frames to layers', a window immediately pops up and says 'Could not complete your request because of a program error.' I assume it must be a bug that needs to be fixed? It won't let me choose a video file at all.
    I hope there is a way to fix this.
    Heims

Maybe you are looking for