Screen not refreshing or showing what I'm doing in CS5.

I am running CS5 Master Suite on Windows 7 64-bit.
Every now and then the psd I'm working on will stop visually refreshing. If I move something, I can see in the Layer preview that it moved, but nothing changes on screen. Once this starts with a file, the only thing to do is close and re-open it.
It doesn't freeze or crash Photoshop, other psd's that are open at the same time work fine. It just for some reason stops refreshing visually the file I'm working on.
On another, maybe related note, sometimes I am working on a file and everything seems to be refreshing fine, except fonts. It won't display a change I've made until I visually move the text block.
Please help.

Unfourtunetly none of this has worked for me. I updated to 12.01, went to NVidia and downloaded the latest driver for my card
( I don't believe I have a PhysX GPU setting). I have a Nvidia Quadro FX 380. Any other suggestions? Because it appears to be getting worse. The lack of refresh seems to be increasing in frequency.
Thanks for all your assistance.

Similar Messages

  • Touch screen not responding and shows no no no!!!! message on screen

    my iphone3gs touch screen not responding and shows no no no!!! message on screen,please hlp me out....

    Hi and welcome to the community! Since you're new please be sure that you have checked out our Discussion guidelines.
    In this case you are going to need to look at getting the phone into one of our authorised repair agents, please contact your local  Xperia Care team to have this arranged.
    What are your thoughts about this forum? Let us know by doing this short survey.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Showing. I RESET. Works, but doing this every day...does not seem right. What am I doing wrong?.

    Classic iPod in Dock, suddenly stops playing. Fully charged, blue play button showing. I RESET. Works, but doing this every day...does not seem right. What am I doing wrong?

    No problem, sometime the iPod need a Reset to clear the overflowing cache.
    So it's good to Reset once a week or after you recharge it.
    Here is the Apple support Article on the 5Rs
    http://www.apple.com/support/ipod/five_rs/classic/
    Have a nice day!

  • HT1338 When I email an attachment with "Always Sent Windows-Friendly Attachments" checked, the result is a picture embedded in the body of the email, not a attachment.  What am I doing wrong.

    When I email an attachment (a .jpg file) with "Always Send Windows-Friendly Attachments" checked, the result is a picture embedded in the body of the email, not a attachment.  What am I doing wrong.

    1. "Always Send Windows-Friendly Attachments" has nothing to do with the display of attachments on either your machine or other ones. It's an esoteric setting that strips the resource fork from Mac files (that might have them) which could apper as a duplicate file on the Windows machine.
    2. Send Plain Text emails. Then it will always be received as an attachment.

  • I have set hyperlinks within my ibook author document, they work perfectly until i export and view on the ipad, when only one or none work, (hyperlinks to website not working at all) what am i doing wrong?

    I have set hyperlinks within my ibook author document, they work perfectly until i export and view on the ipad, when only one or none work, (hyperlinks to website not working at all) what am i doing wrong?

    An external hyperlink should handoff to Safari and leave iBooks.
    If that's not happening, perhaps there is something misconfigured on your iPad? Have you manually confirmed those links work in Safari on your iPad?

  • Hi, I am trying to blur the background in Prem Pro CC I have made a mask using the free draw bezier tool but it does not track forward.  What am I doing wrong?

    Hi, I am trying to blur the background in Prem Pro CC I have made a mask using the free draw bezier tool but it does not track forward.  What am I doing wrong?

    Hi Kevin
    I found a YouTube clip explaining how to blur the background with free draw bezier tool and it also said to invert the mask, but it still does not track forward. I really hope there is a solution.
    Steph

  • SALV in Split Screen - not refreshing

    I have a Report based program with Selection Screen
    Upon entering valid Inputs program calls screen 100.
    On Screen 100, I placed following elements
      Docking Container
           Splitter Container with 2 rows with Docking container as Parent
                  Placed a Toolbar object on the Top container of the split. Toolbar has 2 buttons BSID & BSAD
                  If user clicks BSID, then I have to show a SALV report in Lower Split
                  If user clicks BSAD, then I have to show a bit different data SALV report in same Lower Split
    I tried several methods to refresh the data in SALV( I used 1 SALV)
    Data is not refreshing in the second split...
    I see that Lower Split container has children attribute set.. I tried to free() the lower container, but it deletes cmplete container itself, what can I do to refresh the data without completely redoing all the container stuff?
    Also Children attribute in Split container is Read-only, how can I change this one ?
    Valid answers would receive points...

    PROGRAM  yvtest3 LINE-SIZE 512.
                                  CLASSES
    CLASS: lcl_main  DEFINITION DEFERRED,
           lcl_event DEFINITION DEFERRED.
                                   TYPES
    TYPES: BEGIN OF t_kna1,           " Customer Info
            kunnr TYPE kna1-kunnr,
            name1 TYPE kna1-name1,
           END OF t_kna1.
    TYPES: BEGIN OF t_lfa1,           " Vendor Info
            lifnr TYPE lfa1-kunnr,
            name1 TYPE lfa1-name1,
           END OF t_lfa1.
                                   OBJECTS
    DATA: o_tlbar TYPE REF TO cl_gui_toolbar,
          o_split TYPE REF TO cl_gui_splitter_container,
          o_dock  TYPE REF TO cl_gui_docking_container,
          o_main  TYPE REF TO lcl_main,
          o_event TYPE REF TO lcl_event,
          o_top   TYPE REF TO cl_gui_container,
          o_down  TYPE REF TO cl_gui_container.
                                 INTERNAL TABLES
    DATA: i_kna1 TYPE STANDARD TABLE OF t_kna1,
          i_lfa1 TYPE STANDARD TABLE OF t_lfa1.
                                   PARAMETERS
    PARAMETERS: p_dbcnt TYPE sy-dbcnt DEFAULT '500'.
          CLASS lcl_event DEFINITION
          Events Definition
    CLASS lcl_event DEFINITION.
      PUBLIC SECTION.
        METHODS: on_click FOR EVENT function_selected OF cl_gui_toolbar
                           IMPORTING fcode.
    ENDCLASS.                    "lcl_event DEFINITION
          CLASS lcl_main DEFINITION
          Main Definition
    CLASS lcl_main DEFINITION.
      PUBLIC SECTION.
        METHODS: constructor.
    ENDCLASS.                    "lcl_main DEFINITION
                                    GET DATA
    START-OF-SELECTION.
    Get Customers
      SELECT kunnr name1
          FROM kna1
          INTO TABLE i_kna1
          UP TO p_dbcnt ROWS.
      IF sy-subrc = 0.
        SORT i_kna1 BY kunnr.
      ENDIF.
    Get Customers
      SELECT kunnr name1
          FROM kna1
          INTO TABLE i_kna1
          UP TO p_dbcnt ROWS.
      IF sy-subrc = 0.
        SORT i_lfa1 BY lifnr.
      ENDIF.
      IF i_kna1 IS NOT INITIAL OR i_lfa1 IS NOT INITIAL.
        CALL SCREEN '0100'.
      ELSE.
        MESSAGE 'No data exists for entry criteria'(001) TYPE 'I'.
        LEAVE TO LIST-PROCESSING.
      ENDIF.
          CLASS lcl_event IMPLEMENTATION
           Events Implementation
    CLASS lcl_event IMPLEMENTATION.
      METHOD on_click.
        CASE fcode.
          WHEN 'KNA1'.
            TRY.
                CALL METHOD cl_salv_table=>factory
                  EXPORTING
                    r_container = o_down
                  CHANGING
                    t_table     = i_kna1.
              CATCH cx_salv_msg.
                MESSAGE 'SALV - error'(007) TYPE 'I'.
                LEAVE TO LIST-PROCESSING.
            ENDTRY.
          WHEN 'LFA1'.
            TRY.
                CALL METHOD cl_salv_table=>factory
                  EXPORTING
                    r_container = o_down
                  CHANGING
                    t_table     = i_lfa1.
              CATCH cx_salv_msg.
                MESSAGE 'SALV - error'(007) TYPE 'I'.
                LEAVE TO LIST-PROCESSING.
            ENDTRY.
          WHEN 'EXIT'.
            LEAVE TO SCREEN 0.
        ENDCASE.
        cl_gui_cfw=>flush( ).
      ENDMETHOD.                    "on_click
    ENDCLASS.                    "lcl_event IMPLEMENTATION
          CLASS lcl_main IMPLEMENTATION
          Main Implementation
    CLASS lcl_main IMPLEMENTATION.
      METHOD constructor.
        DATA: lw_evnt  TYPE cntl_simple_event.       " Events
        DATA: li_evnt  TYPE cntl_simple_events.      " Events
    Create Docking Container
        FREE o_dock.
        CREATE OBJECT o_dock
          EXPORTING
            repid                       = sy-cprog
            dynnr                       = '0100'
            side                        = 1            " dock_at_left
            extension                   = 400
            lifetime                    = 1            " Dynpro
          EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            OTHERS                      = 6.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Docking Container'(002) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
    Create Split Screen
        FREE: o_split,o_top,o_down.
        CREATE OBJECT o_split
          EXPORTING
            parent            = o_dock
            rows              = 2
            columns           = 1
          EXCEPTIONS
            cntl_error        = 1
            cntl_system_error = 2
            OTHERS            = 3.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Splitter Container'(003) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
    Set Sash Invisible
        o_split->set_row_sash( id    = 1
                              type  = o_split->type_sashvisible
                              value = o_split->false ).
    Set Row Height of 1st Container to fit Buttons
        o_split->set_row_height( id = 1 height = 5 ).
        o_top  = o_split->get_container( row = 1 column = 1 ).
        o_down = o_split->get_container( row = 2 column = 1 ).
    Create Toolbar
        CREATE OBJECT o_tlbar
          EXPORTING
            parent             = o_top
            lifetime           = 1
          EXCEPTIONS
            cntl_install_error = 1
            cntl_error         = 2
            cntb_wrong_version = 3
            OTHERS             = 4.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Toolbar'(004) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
    Add Buttons to the Toolbar
        CALL METHOD o_tlbar->add_button
          EXPORTING
            fcode            = 'KNA1'
            icon             = ' '
            butn_type        = 0
            text             = 'KNA1'
          EXCEPTIONS
            cntl_error       = 1
            cntb_btype_error = 2
            cntb_error_fcode = 3
            OTHERS           = 4.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Button on Toolbar'(005) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
        CALL METHOD o_tlbar->add_button
          EXPORTING
            fcode            = 'LFA1'
            icon             = ' '
            butn_type        = 0
            text             = 'LFA1'
          EXCEPTIONS
            cntl_error       = 1
            cntb_btype_error = 2
            cntb_error_fcode = 3
            OTHERS           = 4.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Button on Toolbar'(005) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
        CALL METHOD o_tlbar->add_button
          EXPORTING
            fcode            = 'EXIT'
            icon             = ' '
            butn_type        = 0
            text             = 'Exit'
          EXCEPTIONS
            cntl_error       = 1
            cntb_btype_error = 2
            cntb_error_fcode = 3
            OTHERS           = 4.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Button on Toolbar'(005) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
    Add Events
    register events for toolbar-control
        lw_evnt-eventid = o_tlbar->m_id_function_selected.
        APPEND lw_evnt TO li_evnt.
        o_tlbar->set_registered_events( li_evnt ).
    Create Event Handler
        CREATE OBJECT o_event.
        SET HANDLER o_event->on_click FOR o_tlbar.
      ENDMETHOD.                    "constructor
    ENDCLASS.                    "lcl_main IMPLEMENTATION
    *&      Module  STATUS_0100  OUTPUT
          Screen 100 Init
    MODULE status_0100 OUTPUT.
      IF o_main IS NOT BOUND.
        CREATE OBJECT o_main.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT

  • ARD screen not refreshing

    I'm running ARD 2.2, and OS 10.4.6 on my laptop and a G5. When I try to log into the G5, it brings the screen up fine, but will not refresh. So, for every change, click, drag or whatever, I have to close the window and relaunch the session. I have no problems on any other machine. Any suggestions on what I might have to change on the G5 to be have the screens refresh automatically (btw, Refresh Screen is greyed out also)
    Thanks for any light you can shed on this.
    Robin
    G4 Powerbook   Mac OS X (10.4.6)  

    So cool!!! Thanks very much, Brent, for solving my problem.
    Maybe you can answer another one while we're at it. Before I knew the problem was on the G5, I tried deleting ARD (and all its parts) from my other machine - a g4 tower, also running 10.4.6.
    I reinstalled it and I updated it, but each time I try to launch it, it tries to reinstall itself again. Obviously, it's missing something, but I don't know what it could be. Any suggestions?

  • [ATI open source driver, laptop] Screen not refreshing properly.

    Hi guys, I've been using ATI Catalyst driver and everything was working well until I decided to switch to open source driver.
    Now I have strange problem. My screen is not refreshing properly, I mean, for example I use Facebook and I decide to read something in other card in browser and after I switch cards I can still see some of the facebook page elements, window title does not change. After I move cursor over page elements are refreshing. When I scroll page, even a little bit, it refreshes as well. Or I use terminal, I type some command, press enter and sometimes screen doesn't refresh and I can't see output until I try to resize window or select text (which I can't see...).
    Sorry for not the best description, I will give you screens tomorrow because today I can't.
    My graphics card is Radeon HD 5400 Series and I use ASUS X52J laptop.

    tomk wrote:Install radeonhd and run X with no xorg.conf - it will autodetect the driver.
    The radeonhd works.  It's the radeon driver that doesn't work, I tried no xorg.conf and it still used the vesa driver.
    Last edited by cyclotomic (2009-06-27 07:11:12)

  • I can not get past the setup screen on my reader. What am I doing wrong?

    I can not get past the setup screen on my reader.  What can I do?

    I have no idea what you mean; can you post a screenshot?

  • Remote Desktop Session - Sections of Screen Not Refreshing

    Remote Desktop Session Not Refreshing        
    I have 3 monitors.
    When I connect to any RDP session, my screen seems to lag.  For instance, I click the start button and nothing displays, but when I move the mouse, I see parts of the start menu appear. 
    This seems to be a recent issue. I RDP sessions throughout the day, so you could imagine how annoying this could be.
    Can anyone please give me some advice?
    Windows 7
    10GB RAM
    64-bit

    Hello NBell_DF,
    Please try to use other Windows 7 computer in the same network environment to see if they can normally remote desktop to the corresponding computers.
    If they also have the same issue, it may be related to the network. And then use the command ping <destination IP> to check the network delay.
    If other computer don’t have the similar issue, please update the network driver.
    Additionally, we could choose your connection speed to optimize performance.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Screen not refreshing after sleep mode

    Hello All,
         I have had a problem since 10.7.XX where my screen does not refresh after the computer goes into screen saver mode and then into sleep mode. When I move my mouse to resume i get a line drawn where I move my mouse and it reveals the login screen slowly. I can click on a login account and a small section of the screen refreshes where the login password is. Once I login it goes away. Was hoping Mountail Lion would address, but the problem continues from Snow Leopard. I am on a Imac 24" 2009 3.06Ghz dual core with 4 Gig of Ram, Nvidia GeForce 8800 GS 512mb. Thanks in advance for any advice.
    Chad

    Hello,
    See if it's related to this...
    It also seems to be related to later OSX versions, like 10.8.x & 10.9.x
    The 2012 macs (and later apparently) (also later OSX versions on earlier Macs can do it also), not waking normally from sleep after hours being in sleep. (noted here ...
    http://www.xlr8yourmac.com/archives/feb13/022813.html#2012macswontwake
    "Why 2012 iMac/2012 Mac Mini won't Wake After Hours of Sleep (Hibernates/Powers Off)")
    The sleepimage file still reappears even if never slept. Delete it (hibernate off, etc) - within minutes its back.
    A note on that here - http://www.xlr8yourmac.com/feedback/Chameleon_SSD_Optimizer.html
    About iMac sleep...
    http://forums.macrumors.com/showthread.php?t=1529750
    Try this: "sudo pmset autopoweroff 0" and "sudo pmset standby 0"
    http://xlr8yourmac.com/archives/sep13/091313.html#10.8.5SleepEjectTip

  • When i try to load music is says "syncing" but then it's not there to play what am i doing wrong?

    when i try to load music it shows the "syncing" messge on the ipod and I can find it later in the folders of my ipod on the pc...but its not in the ipod to play. It's a used one and i think a ipod shuffle 3rd generation..what am i doing wrong and how do i fix it?

    Nothing you doing wrong, there is just not enough space on your phone.

  • Chat works fine in IE but not in Firefox - shows "loading" but never does

    Facebook Chat always shows "loading" but never does - I've tried most of the suggested solutions but have yet to find one that works with Firefox - it still works fine in IE..

    Now sorted but I don't know what I did! :)

  • How do I get rid of the dialog box and audio that is in the bottom left of the screen that keeps telling me what I'm doing or need to do?

    How do I get rid of the dialog box and audio that is in the bottom left corner of the screen running script and audio of  what I'm doing or need to do?

    Go into System Preferences, select Universal Access, turn off Voiceover.

Maybe you are looking for

  • How is the integration with ECC in SRM 7.0??

    Hi, Working with SRM 5.0 or 5.5  the use of XI for integration with ECC is not mandatory because when we send any document from ECC to SRM like requisitions (to convert them in shopping cards) or when we send any document from SRM to ECC like shoppin

  • Adobe Echosign included in Adobe Full CC?

    HI all, i was just going through acrobat. Learning how to sign documents etc when I came across Echosign. It's a superb solution. I tried a few documents with friends to see how it works. I am a full cc subscriber but not sure if Echosign is a part o

  • Mail backups are interfering with my access

    Mail is forever downloading supposedly new incoming messages (most recently to the tune of 360,000 messages!) Sometimes they show up in trash and sometimes they are not to be found. When I find them in trash (which I keep deleting to no effect) they

  • Garbage and Remoting

    Hi! I'm developing an AIR application and I'm trying to optimize memory allocation to avoid memory leaks. My application detects content updates by remoting calls and I want to know if, during my remoting calls, I produce some garbage that the garbag

  • Dimension Default member use a otherdimension.currentmember.level.ordinal = 3

    Hi I am trying to create a condition in a dimension defaultMember attribute where I use another dimension as a condition. It's possible to call another dimension or a measure to the dimension defaultMember expression ? I am getting the error: Error L