Photoshop hangs up when writing text

I have workstation
Dell Precision T5400
Base Intel Xeon E5420 (2.50GHZ, 1333Mhz, 2x6MB,Quad Core)
Operating System Windows Vista® Business SP1 64Bit
Memory 8GB DDR2 667 Quad Channel FBD Memory (4x2GB)
Video Card 512MB PCIe x16 nVidia Quadro FX 1700 (MRGA14L)
Hard Drive 146G,(15,000rpm) SAS Hard Drive
2nd Hard Drive Additional - 146G,(15,000rpm) SAS 2 Hard Drive
Raid Controller C15 SAS No RAID for 2 Hard Drive
And when i try to write something in Photoshop cs4 64bit version it hangs up with following event entry:
Problem signature:
Problem Event Name: APPCRASH
Application Name: Photoshop.exe
Application Version: 11.0.0.0
Application Timestamp: 48d38aa7
Fault Module Name: BIB.dll
Fault Module Version: 1.2.1.1744
Fault Module Timestamp: 48b5fcc0
Exception Code: c0000005
Exception Offset: 000000000001a303
OS Version: 6.0.6001.2.1.0.256.6
Locale ID: 1063
Additional Information 1: 2818
Additional Information 2: 5c2b16a25fedf03aa652cc3088922fb6
Additional Information 3: 1f10
Additional Information 4: ec8d43907313a023e731faa974f00a55
32bit version of photoshop cs4 is working fine.
What's happening? why i can't use 64bit version of ps?

> Could you write what are those fonts exactly so i can delete them
Were that it was so easy. Adobe makes over 1000 fonts. They know that those will not cause a problem. They can provide you with a list of those. There are another 900,000 fonts (I guess) in the world, and more being made every hour. Adobe does not track those, but knows that a small percent of them are defective, and can cause the problems Chris mentions.
The trick is to find which font is bad. I only use the Adobe fonts, so I never have had a problem. The people who search out free fonts through the web are generally those that get the diseased fonts.
The solution is to remove all fonts other than those from Adobe, Microsoft, and other reputable makers. Test if the problem goes away. If it does, then there is a bad font (or several) in the fonts you deleted. Add fonts back slowly, never more than a few dozen at a time, and test with PS after each addition. When it breaks, you know a bad font was in the last group of fonts added.
This will take a bit of time, but hey, they are free fonts.

Similar Messages

  • When writing text before naming contact it doesn't allow you to choose contact

    when writing text before naming contact it doesn't allow you to choose contact after finishing

    That sounds strange... Here's what you can do... Select and cut the text message you have written, enter the contact name, the paste the message back in. Hope this helps!

  • Cursor disappears when writing text?

    I have a frustrating problem in CS3 that when writing a block of text, either with text tool or area text tool, that the cursor disappears. I need to see its new position after using the space bar or tab: ready to input the next piece of text.
    It seems to be flashing some of the time if I click into the middle of the text block, but disappears where I want to continue it at the bottom of the text block?

    This bug is still in Illustrator CS5
    And it depends on aplication main window size!
    Especialy if you have two monitors, document window is outside the main window and main application window is not maximized.
    If you have application window smaller, than document window (in height), then where document height is still bellow application window height,
    there you can see cursor. If you are editing text in position which is over the main application height, there is not cursor visible.
    So, my solution is:
    Resize main application window to the maximum size.
    (And maybe you will need restart Illustrator)
    (UPDATE: It depends on window width too! )

  • Photoshop CS4 freezes when adding text to box.

    Typing text into a rectangle box freezes Photoshop with the unclose-able error box "Could not complete your request because of a program error"
    Force quit and clean-start with command-option-shift Start Photoshop and still same error. I can type text into the box for about 10-20 characters and then error box again.
    Using PS CS4 v11.0 with OS 10.5.6 with G5 Dual 2 Ghz PowerPC accessing files on external firewire drive.
    Any suggestions?

    Right you are.
    Corrupted font cache(s).
    Cleaned out and dumped all caches with Cocktail and restarted clean. A-OK now.
    Thank you.

  • Xmldom.writetoclob hanging forever when writing a domnode to a temp clob

    Hi
    Wondering has anyone come across anything similar (or know a work around)
    1. Basically the the procedure below loads an XML file. (OK)
    2. Removes reference to external dtd, ref was causing and error (OK)
    3. Parses the XML (OK)
    4. Gets a list of the "item" tags (OK) - should be up to 500 item elements in XML
    5. Loops on all elements
    a. writes node to temp clob *(PROBLEM HERE)*
    b. Creates xmltype from clob (OK)
    c. transforms xmltype and assigns to another xmltype (OK)
    d. inserts new xmltype (OK)
    This procedure is used by a threaded os java app to load thousands of files to db.
    It works fine 99% of the time but for some files the procedure is hanging at (5.a : write domnode to clob using xmldom.writetoclob)
    I am absolutely sure the problem is due to the characters in the domnode as all files that have hung on processing contain these bizarre characters,
    the db character set is Unicode AL32UTF8 so it should be able to handle almost anything, saying that, if the it is a prob with the characters then why does
    the loadclobfromfile procedure succeed.
    Developed on Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit
    I have no prob rejecting node and continue processing but procedure just hangs and i have to kill the thread on the os.
    Is there a way to
    1. Test for invalid AL32UTF8 chars and skip on error.
    or
    2. Get around the xmldom.writetoclob procedure and create an xmltype from the xmldom.domnode (i tried to convert domnode -> domdocument -> xmltype, no joy)
    or
    Open to suggestions
    PROCEDURE
    PROCEDURE process_blog_xml_file (
          p_file_name     IN   VARCHAR2,
          p_insert_date   IN   VARCHAR2,
          p_dir           IN   VARCHAR2 DEFAULT NULL
       IS
          newsurl        VARCHAR2 (80);
          parser         xmlparser.parser;
          newsxml        xmldom.domdocument;
          titles         xmldom.domnodelist;
          titles_found   NUMBER;
          curnode        xmldom.domnode;
          textchild      xmldom.domnode;
          dest_clob      CLOB;
          l_temp_clob    CLOB;
          src_clob       BFILE         := BFILENAME (g_zip_file_dir, p_file_name);
          dst_offset     NUMBER             := 1;
          src_offset     NUMBER             := 1;
          lang_ctx       NUMBER             := DBMS_LOB.default_lang_ctx;
          warning        NUMBER;
          l_xml          XMLTYPE;
          xsldata        XMLTYPE;
          xmldata        XMLTYPE;
          l_dir          VARCHAR2 (1000);
       BEGIN
          LOG (   'Start Processing file '
               || p_file_name
               || ' from zip '
               || p_insert_date
          IF p_dir IS NULL
          THEN
             SELECT directory_path
               INTO l_dir
               FROM all_directories
              WHERE directory_name = g_zip_file_dir;
          ELSE
             l_dir := p_dir;
          END IF;
          IF g_xsl_clob IS NULL
          THEN
             init_xsl_clob;
          END IF;
          com_polecat_xmldb_utils.set_load_date
                                      (TO_DATE (REPLACE (REPLACE (p_insert_date,
                                                         '.zip',
                                                'DD-MM-YYYY'
          LOG ('ITEM.Loaddate set : ' || com_polecat_xmldb_utils.get_load_date);
          xsldata := XMLTYPE.createxml (g_xsl_clob);
          LOG ('Read xsl file to clob');
          DBMS_LOB.OPEN (src_clob, DBMS_LOB.lob_readonly);
          DBMS_LOB.createtemporary (dest_clob, TRUE);
          DBMS_LOB.loadclobfromfile (dest_lob          => dest_clob,
                                     src_bfile         => src_clob,
                                     amount            => DBMS_LOB.getlength
                                                                         (src_clob),
                                     dest_offset       => dst_offset,
                                     src_offset        => src_offset,
                                     bfile_csid        => NLS_CHARSET_ID
                                                                       ('AL32UTF8'),
                                     lang_context      => lang_ctx,
                                     warning           => warning
          LOG ('Read xml file to clob');
          DBMS_LOB.CLOSE (src_clob);
          parser := xmlparser.newparser;
          dest_clob := REPLACE (dest_clob, g_blog_dtd_remove, '');
          LOG ('Parse xml ');
          xmlparser.parseclob (parser, dest_clob);
          DBMS_LOB.freetemporary (dest_clob);
          newsxml := xmlparser.getdocument (parser);
          xmlparser.freeparser (parser);
          titles := xmldom.getelementsbytagname (newsxml, 'item');
          LOG ('Load  blogs items to ITEM table. ');
          FOR j IN 1 .. xmldom.getlength (titles)
          LOOP
             curnode := xmldom.item (titles, j - 1);
             DBMS_LOB.freetemporary (l_temp_clob);
             DBMS_LOB.createtemporary (l_temp_clob, TRUE);
             LOG ('write node to temp clob ' || j);
             xmldom.writetoclob (curnode, l_temp_clob);                                              <-- Hanging Here
             LOG ('create xml type from clob ' || j);
             l_xml := XMLTYPE.createxml (l_temp_clob);
             LOG ('apply xsl transform to xml ' || j);
             xmldata := l_xml.transform (xsldata);
             LOG ('Insert to item table  ' || j);
             BEGIN
                INSERT INTO item
                     VALUES (xmldata);
             EXCEPTION
                WHEN OTHERS
                THEN
                   LOG ('Error::  ' || SQLERRM);
             END;
          END LOOP;
          xmldom.freedocument (newsxml);
          LOG (   'Finished Processing file '
               || p_file_name
               || ' from zip '
               || p_insert_date
       EXCEPTION
          WHEN OTHERS
          THEN
             LOG (SQLERRM);
       END;note variables starting with g_ are defined in package spec
    Cheers
    Ian
    Edited by: user3604054 on 01-Apr-2010 06:52
    Edited by: user3604054 on 01-Apr-2010 14:57
    Edited by: user3604054 on 01-Apr-2010 15:00
    Edited by: user3604054 on 01-Apr-2010 15:00
    Edited by: user3604054 on 01-Apr-2010 15:05
    Edited by: user3604054 on 01-Apr-2010 15:06

    2. Get around the xmldom.writetoclob procedure and create an xmltype from the xmldom.domnode (i tried to convert domnode -> domdocument -> xmltype, no joy) Which version of Oracle (4 digits)?
    Also look in the FAQ in the upper right for how to use the tag to wrap PL/SQL to retain formatting to make it easier for all to read.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I keep loosing pages when writing text

    Love Lion but I gotta find out why this keeps happening. If I have a page open in Safari and I need to click to open a new page to write text as in a forum, it seems 9 out of 10 times I do this the page I'm writing on disppears before I finish writing resulting in loosing all the text I just wrote. I search for the page figuring it is behind or on the desktop but its just gone and is nowhere to be found which makes me have to re open a new page and re write the text again hoping it does not happen.
    Anybody else have this problem?
    RD

    In Lion, anyone who can't spell "losing" has all their text automatically deleted.

  • Why, when entering text, I lose focus frequently and get the warning sound

    When writing text, (here, in blogs or any text editors), the object frequently loses its focus and I get the warning sound as I enter text in an area that does not accept this type of input. 
    As I write this, the bars at the top of the page frequently changes from gray to white, and as I try to write the next letter I get awarning sound; to continue entering text, I need to click on the Multi-Touch trackpad to regain focus. I am able to enter only a few characters before I get the warning sound again.          
    any suggestions?
    Mac OS X 10.7.4
    Model Name:          MacBook Pro
      Model Identifier:          MacBookPro6,1
      Processor Name:          Intel Core i7
      Processor Speed:          2.66 GHz
      Number of Processors:          1
      Total Number of Cores:          2
      L2 Cache (per Core):          256 KB
      L3 Cache:          4 MB
      Memory:          8 GB

    Problem resolved by a genius at the local Apple Store.
    The problem was caused by static electricity interacting with the track pad. He placed some srips behind the pad and problem resolved.

  • Why is my Flex extension for Photoshop out of focus while writing text?

    Hi All,
    I have a query. Why is my Flex extension for Photoshop out of focus while I am writing text to a layer? I noticed that if I am writing some text in a text layer, and while writing I try to do some action in my extension, like clicking a button, I am unable to do so.. Why is that? The extension doesn't receive any click events.. I have to select the layer and then perform any such action.. Please answer if there is a way of solving this issue..
    Thanks!

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    In Firefox 4 [http://kb.mozillazine.org/Safe_mode Safe mode] disables extensions and disables hardware acceleration.<br />
    If disabling hardware acceleration works then check if there is an update available for your graphics display driver.
    * Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)

  • Problems writing text on Photoshop CC

    I am having problems writing text on Photoshop CC - the image goes black.

    Windows 8?  Update your video card driver from the GPU maker's website. If you cannot update your driver (like on a locked laptop machine), then set the GPU drawing mode in Photoshop to "Basic" and relaunch the app.

  • Photoshop hanging when saving for web

    I have a problem with photoshop hanging when I try to save for web. The only way to get photoshop to respond is to end task
    I have reinstalled photoshop but this didn't help. I am not sure where to look for log files to try and pinpoint what the problem might be.

    Hi,
    What version of photoshop and operating system are you using?
    What are the pixel dimensions of the images your using in save for web?
    Prior to photoshop cs6, photoshop save for web would sometimes be quite slow if your image was very large.
    (larger than you might post on the web, such as a full size camera raw file)

  • Photoshop freezes when placing text

    Using Photoshop CC 2014,When I try to place text in my document, the program fails to respond. I have to terminate the program to clear it.

    Supply pertinent information for quicker answers
    The more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in your question:
    Adobe product and version number
    Operating system and version number
    The full text of any error message(s)
    What you were doing when the problem occurred
    Screenshots of the problem
    Computer hardware, such as CPU; GPU; amount of RAM; etc.
    Photoshop menu Help>System Info data

  • Why does my iPad hang when writing an email?  When I'm done with the email, I can't send it out and have to re-boot the iPad.

    Why does my iPad hang when writing an email?  When I'm done with the email, I can't send it out and have to re-boot the iPad. This happens if the time to compose email exceeds 10 to 15 minutes.

    Shut down all programs that are running in the background.
    1. Double-click the Home button to see Apps in background
    2. Hold the Apps down for a second or two until you see the minus sign
    3. Tap the minus sign to close program
    4. Reset iPad. Hold the Sleep and Home button down for about 10 second until you see the Apple logo
    Suggest you perform Step 1 to 3 at the end of every day.

  • I am having an issue writing texts with Siri on iPhone 5 iOS 6.  When I do it just talking to the phone it works fine. However if I speak through the ear pod headphones or Bluetooth headset it only writes about 5 works before trying to send.

    I am having an issue writing texts with Siri on iPhone 5 iOS 6.  When I do it just talking to the phone it works fine. However if I speak through the ear pod headphones or Bluetooth headset it only writes about 5 works before trying to send.
    Does anyone know why this might be?

        Hello APVzW, we absolutely want the best path to resolution. My apologies for multiple attempts of replacing the device. We'd like to verify the order information and see if we can locate the tracking number. Please send a direct message with the order number so we can dive deeper. Here's steps to send a direct message: http://vz.to/1b8XnPy We look forward to hearing from you soon.
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • On a Mac, in Adobe Photoshop CC 2014, when adding audio to an edit, i get the message "Could not complete your request, because Dynamiclink is not available". When performing the exact same operation in Adobe Photoshop CC, i can add audio in the same way,

    On a Mac, in Adobe Photoshop CC 2014, when adding audio to an edit, i get the message "Could not complete your request, because Dynamiclink is not available".
    When performing the exact same operation in Adobe Photoshop CC, i can add audio in the same way, no error message. Any ideas to solve this, anyone? Would be greatly appreciated.

    I tried to update and it keeps telling me to get the Application Manager. And this is what happens
    Adobe Application Manager failed and it told me to download the Adobe Support Advisor.
    Adobe Support Advisor told me that there was an issue:" cpsid_82829s1: "A restart is pending," bootstrapper error has occurred. "Token Number: 40-87772-063201122012
    I followed the instructions it gave me to correct this issue:
    If you receive the error "Installer has detected that a machine restart is pending. It is recommended that you quit the installer, restart try again," do the following:
    #Restart the computer and try the installation again.
    #If the installation fails, delete the InProgress registry key: 
    Disclaimer: This procedure involves editing the Windows registry. Adobe doesn't provide support for editing the registry, which contains critical system and application information. Make sure to back up the registry before editing it. For more information about the registry, see Windows registry information for advanced users on the Microsoft support site, or contact Microsoft. 
    Launch Windows Registry Editor.
    (Windows XP) Choose Start > Run, type regedit in the Open text box and click OK.
    (Windows Vista/ Windows 7) Choose Start, type regedit in the Search box, and press Enter.
    Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager.
    Delete the InProgress key.
    I was not able to find the "InProgress" key.

  • Internal error occured when writing

    Hi all
    I successfully imported an APO planning area into the quality systems, however the same request ends with error 12 in the production system. Landscape is SCM 5.0 sp8 with BI 7.0 sp12. When i checked the import job RDDEXECL (user DDIC), it shows:
    Date Time Message text Message class Message no. Message type
    07/08/2007 00:02:57 Job started 00 516 S
    07/08/2007 00:02:57 Step 001 started (program RDDEXECL, variant , user ID DDIC) 00 550 S
    07/08/2007 00:02:57 All DB buffers of application server <server_name> were synchronized PU 170 S
    07/08/2007 00:03:17 <b>Internal error occurred when writing</b> D0 054 E
    07/08/2007 00:03:17 Job cancelled after system exception ERROR_MESSAGE 00 564 A
    I thought there will be an ABAP dump, I found this internal error (in bold in the log above). I tried searching for info on this but no help, it does not says error writing to what? Please help.
    Thanks
    Ali

    It seems a syncronization problem..
    You can create a customer message providing the following information:
    1. The symptoms that occurred
    2. The highest Support Package
    3. The current SAP_BASIS Support Package level
    4. The queue that is currently selected
    Header Data

Maybe you are looking for