PS CS6 slow when I close the program: Wait 10 seconds before close.

how i have to do to resolve?
Thank you

Hello Biromix ,
If its Photoshop CS6,
Please take care of few steps:
1. If its windows :- Uninstall or disable all your third party plugins
2. launch PS with sift key pressed and then press ok.
3. Reset Preferences -
4. Disable visual themes of OS
5. Check your system H/w RAM, GPU, CPU etc
6. Keep your S/w up to date
7. Under preferences -> Performance slide it to 80%, GPU accelleration set it to Basic and Cache to 1.
Check any antivirus or application interference from any other manufacturer.
I think that all you can try to begin with.
Thanks

Similar Messages

  • Upon opening a new tab, it auto selects the address bar. Also when closing firefox, you must wait 5 seconds before re-opening or you get an error saying it's already open but not responding. Please help!

    Please help with this annoying problem - the firefox main start page that runs off google accel. should set it to the dialog box to search so you can begin typing A.S.A.P
    Same with other websites like bing and google.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration 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
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Try to wait a bit longer before reopening Firefox to give Firefox more time to close completely.
    Try to use "Firefox/File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit") to close Firefox if you are currently doing that by clicking the close X on the title bar.
    See "Hang at exit":
    *http://kb.mozillazine.org/Firefox_hangs
    *https://support.mozilla.com/kb/Firefox+hangs

  • I installed Adobe Web and Design Preium CS6 on windows 8.1, but when I open the program the size of the menus and tools are so tiny. It is not like that for Acrobat, but all the other programs. Is there a fix for this?

    I installed Adobe Web and Design Preium CS6 on windows 8.1, but when I open the program the size of the menus and tools are so tiny. It is not like that for Acrobat, but all the other programs. Is there a fix for this?

    Thanks for the help. I installed CC and it fixed everything but Photoshop. I guess I will have to use my old laptop for images until Adobe fixes the problem. Do you know of a place where we can send issues like these to Adobe?

  • When I start the program I instantly see this message:  "Adobe Bridge encountered a problem and is unable to read the cache, please try purging the central cache in cache preferences to correct the situation".  I have tried this and it only results in a s

    When I start the program I instantly see this message:  "Adobe Bridge encountered a problem and is unable to read the cache, please try purging the central cache in cache preferences to correct the situation".  I have tried this and it only results in a stalled/locked program.  I have tried restarting my machine multiple times and tried reconfiguring how the cache is managed.  Do you have anyone who could walk me through each step to correct this problem which just started two days ago.  I have owned this program for at least a year now...

    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • "Waiting for real-time target (RT PXI target) to respond" error when the program waits interrupts

    Hi there,
    I have developed an application to detect interrupts generated by a electronic card and act in consequence. The program has been developed in labview but it calls a dll; that was created with labwindows. The dll is programmed to open the visa communication, enable events and install the interrupt handler and when an interrupt is detected, it reads the value of the different registers of the card and returns it to labview to visualize them. 
    The problem is that when the program waits for an interrupt, a prompt appears with the message "Waiting for real-time target (RT PXI target) to respond" and the only option I have is to click on the button to disconnect from the pxi or just wait. If I wait and I generate an interrupt, the prompt disappears and the application visualize the data like it was expected. 
    To wait for the interrupt the following code has been programmed in the function:
                    while (flag == 0)
                                    Sleep (1000);
    When an interrupt occurs, the value of flag changes to 1 and the function continue without any problem. I am not really sure, but probably here is the problem and probably this is not the best way to wait for an interrupt because the sleep function suspends the thread for the configured time, but at least the computing load in the PXI is between 0% and 1%. I was wondering if somebody knows how to wait for an interrupt without "lost" the communication with the PXI and if there is a better way to do it. 
    Any answer will be welcome and thanks for them,
    Jaime
    Solved!
    Go to Solution.

    Hello Naity,
    First of all, in which thread runs the waiting process? Is it scheduled in another thread than the function setting the flag?
    It scheduled in the same thread that I use to configure the communications and configure the card. Anyway, here is the pseudo code of the function interrupt that I programmed under labwindows,.
    char* interrupt(void)
    1. Open visa communications
    2.Install handler interrupt --> status = viInstallHandler (instr, VI_EVENT_PXI_INTR, IntrHandler, VI_NULL);   // the function IntrHandler will be called when an interrupt occurs
    3. Enable event PXI interrupt
    4. Wait
    while (flag == 0)
                  Sleep (1000);
    5. Visualize the data coming from the interrupt (registers and values measured with the card)
    6. Uninstall handler interrupt
    7. Close visa session
    The interrupt handler function IntrHandler is called immediately when an interrupt occurs and the pseudo code is like this
    ViStatus _VI_FUNCH IntrHandler(ViSession instr, ViEventType etype, ViEvent event, ViAddr userhandle)
    1. Disable some functions of the card to avoid damages. 
    2. Read registers and put them in a buffer
    3. Change the value of flag ---> flag = 1;
    In labview, I call the function interrupt with a call library function node (see the capture attached) and the program reads and saves the data from returned from the function.
    Secondly, I am not sure this method is the most elegant. You could for example register an event with the function and, insteand of setting a flag to 1, trigger the event and schedule it in another thread (if the function is thread safe). This could reduce your CPU Load even more and seem a bit cleaner to me.
    I've never used events before in labwindows but I will try to do it in this way. But anyway, I suppose that I should; somehow, wait the event to occurs in labview while the waiting for the event is programmed inside the dll...and probably the same prompt that i am trying to avoid is going to appear again, because I am not returning the "control" to labview (I mean, labview executes the dll and waits for the event to occur. Then the execution of the labview program is stopped in the call library function node executing the dll)
    Third point, which environment of development are you using?
    I am working with LV 2010 sp1 and Labwindows cv 10.0.1 and with the real time module.
    I did also another test, I divided the program in different functions, one to initialize the communication, another to wait until a interrupt has been detected and the other to obtain the data from the interrupt and close communications. With labview I call first with the call library function node the function to initialize, later I call inside a while loop the wait function like this
    int waitAseconds (double seconds, short stop_waiting)
    if(flag==1 || stop_waiting == 1)
    flag = 1; //to detect the stop_waiting button
    printf("flagAA =1 stop waiting = %d time = %d\n", stop_waiting, clock());
    return flag;
    else
    SleepUS(seconds*1000000);
    //a++;
    printf("flag a= %d stop waiting = %d time = %d\n", flag, stop_waiting, clock());
    return flag;
     and when the program detects an interrupt, the function returns to labview the flag and stops the loop. Finally, it reads the values and close communications. 
    In this way, the prompt appears but after running the application for 10 or 20 minutes and also i checked that there is a time gap between the executions in the loop.
    Thanks for your reply and your help,
    Jaime
    Attachments:
    capture.png ‏40 KB

  • My PS cs6 ask me to buy the program.  I bought it several years ago.  This is the third or 4th time I have had to talk to someone to straighten the program out.  How can we remedy this problem PERMANENTLY?

    My PS cs6 ask me to buy the program.  I bought it several years ago.  This is the third or 4th time I have had to talk to someone to straighten the program out.  How can we remedy this problem PERMANENTLY?

    What steps are you following each of those times to get things working again?
    The way that Adobe activation and serialization works is kinda like signing into a website. When you log in, a cookie is left on your computer so that you don't have to sign in every time. With Adobe activation and serialization, you get similar cookie files, that way you never have to go through that process again. Adobe never touches those files again, it just checks them to make sure they are there.
    You issue you are encountering is the result of this sort of cookie file being deleted, damaged, or invalidated in some way. In most cases, it is because of cleaning software treating it like a website cookie, thinking it is unimportant, and removing it. However, there are many other possibilities including files becoming corrupted due to disk or file handling errors by the system and major system changes.
    To take care of the problem permanently, we have to find out exactly what the source of the issue is on your computer and eliminate it (or mitigate it if removing third-party software is out of the question).

  • When I install the program, all go good but when i open the program, it say: iTunes was not installed  correctly, Please reinstall Itunes, After i do this but the same

    when I install the program, all go good but when i open the program, it say: iTunes was not installed  correctly, Please reinstall Itunes Error 7 (windows 193), After i do this but the same

    Howdy Allux345.
    After multiple installations of iTunes it can be frustrating when the issue isnt resolved. I was able to locate the following knowledge base article that specifically addresses the "Error 7" you are recieving.
    iTunes for Windows: "Error 7" message when opening iTunes
    http://support.apple.com/kb/TS3074
    The Resolution section has different steps depending on what version of the Windows Operating System you're using. Since it can be a bad installation of these Windows files, pay close attention to the instructions on repairing if the file already exhists.
    Thanks for reaching out to Apple Support Communities with your question.
    Cheers,
    Pedro D.

  • When I open (launch) ps6, two old images always open.  always the same 2 images, and always when I launch the program. what is going on?

    when I open (launch) ps6, two old images always open.  always the same 2 images, and always when I launch the program. what is going on?

    Check your userid autorecovery folder after you close Photoshop. If there are psb files in it delete them

  • When I launch the program, I get unwanted tabs

    I've just updated to Firefox 8. Now, every time I launch the program, I get a tab with the "Getting Started with Firefox" page. Closing the tab does no good; when I start the program again, the tab is back. What can I do about this?

    This isn't any help. My home page is unchanged, and loads properly when I launch Firefox. The "getting started" page also launches at startup, in a separate tab. Nothing I've tried makes it stop doing this, and it's getting very annoying. I'm very close to a decision to stop using Firefox and switch to a more reliable browser (and I've been using Firefox happily for years). But thanks for the input.

  • Hi from the last two days my iphone have very slow to open the apps and very slow when i check the notification window , it taking too much time to open when i tap to down . help me to resolve the issue.

    Hi,  from the last two days my iphone( iphone 4 with ios 5) have very slow to open the apps and very slow when i check the notification window , it taking too much time to open when i tap to down . help me to resolve the issue.

    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore...
    iPhone Reset
    http://support.apple.com/kb/ht1430
    Try this First... You will Not Lose Any Data...
    Turn the Phone Off...
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear and then Disappear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...
    Turn the Phone On...
    If that does not help... See Here:
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414

  • I bought a new computer and downloaded my lightroom 4 to it. When I installed the program it asked for my serial number and I impujted it. Then it asked for my previous serial number from my original lightroom 3 purchase. Since I upgraded to ligtroom 4 I

    I bought a new computer and downloaded my lightroom 4 to it. When I installed the program it asked for my serial number and I imputed it. Then it asked for my previous serial number from my original lightroom 3 purchase. Since I upgraded to lightroom 4 I don't have the serial number for the version 3. How do I get the serial number from my 3 version so I can activate my version 4 program

    If you have Lightroom 3 still installed, you can get it from there.
    If you don't and you have your box/disk, it should be on there.
    IF you don't have either of those,and you registered your software, you can log into your Adobe account and retrieve it there.

  • My audio files no longer sync to the in the 5d in camera audio. It did when I bought the program but no longer does  I reinstalled and it still will not sync the files recorded on the H4N with the Canon 5D Mark Ii

    My audio files no longer sync to the in the 5d in camera audio. It did when I bought the program but no longer does  I reinstalled and it still will not sync the files recorded on the H4N with the Canon 5D Mark II  Camera. 
    The program used to import and transcode the Can 5D footage but no longer does.   The program freezes often and looses my projects as well.  Hard to make a living when your editing program is on strike!

    My audio files no longer sync to the in the 5d in camera audio. It did when I bought the program but no longer does  I reinstalled and it still will not sync the files recorded on the H4N with the Canon 5D Mark II  Camera. 
    The program used to import and transcode the Can 5D footage but no longer does.   The program freezes often and looses my projects as well.  Hard to make a living when your editing program is on strike!

  • Adobe Photoshop CS6: Photoshop.exe - System Error  The program can't start because ONCoreFoundation7

    I get this error after updating ONONE premium edition 8 to 8.1
    been to their site no luck in resoving error.
    I click ok to error PS cs6 still launches, just annoying.
    ONCoreFoundation7.dll  is part of ONONE 7

    after updating ONONE premium edition 8 to 8.1
    does not say windows 8 or 8.1
    again, not perfect Suite 7, updating ONONE premium edition 8 to 8.1
    does not say 7
    here's your more info
    I'm trying to fix an error message not covered in the knowledge base.
    I open PS CS6 (after updating to PE 8.1) and I get an error message...
    Adobe Photoshop CS6: Photoshop.exe - System Error
    The program can't start because ONCoreFoundation7.dll is missing
    from your computer. Try reinstalling the program to fix this problem
    I followed instructions in this article, but still get the error, it doesn't stop PS from launching after clicking ok.
    Does anyone know the fix? I even tried reinstalling PE 8.1.
    PE=Premium Edition

  • I Just installed Crative Cloud Lightroom try-version but when i open the program it say "An error occurred when attempting to change modules." ?

    I Just installed Crative Cloud Lightroom try-version but when i open the program it say "An error occurred when attempting to change modules." ?

    Try giving permission to Lightroom folder under
    /Users/[user name]/Library/Application Support/Adobe
    Steps
    Click on Finder and on the menu bar ( top side the of the screen) click on Go > Go to,folder
    In the window type exactly ~/Library and click on Go
    Open Application Support > Adobe and right click on Lightroom folder and select get info
    Under sharing and permission Click on lock and unlock it
    Click on + add your current user name and administrator if not added
    Then give Read and Write permission for Admin, system, everyone and (your user name)
    Click on gear icon and choose apply to enclosed item
    Then Click on Lock
    Launch Lightroom and check.

  • I downloader all the Adobe Presenter, looks like everything downloaded but when I open the program I get the following message: The file archive part of Presenter is missing. You need all parts in the same folder

    I downloadedall the Adobe Presenter, looks like everything downloaded but when I open the program I get the following message: The file archive part of Presenter is missing. You need all parts in the same folder

    HI There,
    It seems that Presenter is not fully downloaded. Please check you have downloaded .exe and .7z files successfully. In case you are still facing the issue then please click on the following link to chat with the support :  Chat
    with an Expert
    Regards,
    Mayank

Maybe you are looking for

  • JRE 1.4.0 not working in IE on Windows XP?

    Hi, after installing JDK 1.4.0 (which brings JRE 1.4.0) my IE 6.0 on Windows XP no longer complaints that there is no Java installed on my machine when opening a page which uses an <applet> tag. (As we all know, Microsoft does not include Java in Win

  • Special gl indicator

    Hi Gurus, 1) the reason to have spl gl indicator is because we cannot post to customer or vendor gl recon account yet when certain transaction done with customer or vendor as the amount not yet recognised so must post to another recon account which i

  • SQL Query : sum only numbers in row - need help

    Pls see data below. I would like to display only 8 rows and BRH CCN rows should be merged together and displayed as - BRH 98 2 instead of 2 rows. The rest of the rows should remain as is. Please help. CCN     SERVICES     MANUFACTURING ASL     138   

  • 3 yr old macbook pro boot up problems

    Hi, I bought a 13" macbook pro 3 yrs ago.. Its running the latest version of Lion. I have a boot up problem. Initially the boot up sound will go off and get stuck on a white screen. I've left it on for 30mins-.it took me to a disk disk utility  scree

  • Router 2811 stop routing

    Hi all, I have a 2811 [Cisco IOS Software, 2800 Software (C2800NM-ADVIPSERVICESK9-M), Version 12.4(11)XJ, RELEASE SOFTWARE (fc1)] and I don´t know why, sometimes the router just stop routing. I perform a "show ip route" or "show arp" and seems to be