Photoshop - program flickers

Hi all
I have a relatively new computer, all the correct drivers etc installed, spec:
Windows 7 Ultimate
Intel(R) Core(TM)2 Quad CPU @ 2.50GHz
4GB RAM
64 Bit Operating System
Graphic Cards: NVIDIA GeFORCE 8400 GS
..yet my computer seems to have trouble handling Photoshop (version CS3 Extended) inparticularly but also had similar problems with Bodypaint and Adobe Professional, though no problems with Maya.
The problem I'm experiencing with Photoshop: whilst initiating a simple command such as 'clone' or even saving a file and trying to change it's file type the program flickers, the tool bar and other command bars disappear for a split second and then come back, the flickering stops once the command has been completed. As you can imagine this makes it's pretty much impossible to work on.
....any ideas what's going on!?...help much appreciated!

Video card has been updated, also updated Photoshop, still have the problem.
I have done my own research to find a solution, thought it was something to do with NVIDIA SLI option, but then found out that's only if you have more than 1 graphic card.... so I am stumped and seriously frustrated!

Similar Messages

  • I am unable to open my Photoshop program after installing the entire Creative Suite: Premium Production 6. All other programs work, but with Photoshop it says that the program is "locked or in use by another user". I need this fixed immediately.

    I am unable to open my Photoshop program after installing the entire Creative Suite: Premium Production 6. All other programs work, but with Photoshop it says that it "Could not open a scratch file because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the 'Properties' command in the Windows Explorer to unlock the file." Then I select "OK" and the next message comes up "Could not initialize Photoshop because the file is locked, you do not have the necessary permissions, or another program is using the file. Use the 'Properties' command in the Windows Explorer to unlock this file. I installed all of the programs on the same day from a CD. I need this fixed immediately.
    I am not interested in switching to Creative Cloud, so don't even suggest it. I spoke to Mashmi (or something to that effect) on the "Support" Chat and there was absolutely no support. Useless actually.
    Thanks in advance.

    Could not open a scratch file because the file is locked or you do not have the necessary access privileges. (…) | Mylen…
    Mylenium

  • How do I install CC Photoshop Program?

    I've been trying to install the CC Photoshop Program on my desktop. I can save it,, but can't install it. Keep getting a 206 error message.

    Try Downloading the direct CC installer from this link. First carefully read the download instructions and follow or you'll get access denied. You may just have a bad download.
    http://prodesigntools.com/adobe-cc-direct-download-links.html

  • Trivial program flickers on startup.

    The following program flickers on startup - the field is sometimes displayed, then erased, then displayed again.
    From the output to the error stream, it appears that the field is being painted, before the frame has even been. It's not surprising then that it gets erased when the frame is painted for the first time. This happens after the frame is made visible.
    Indeed. I've got around it with a hack which consists of having JTextField's paint method ignore the request if the frame hasn't been painted.
    But why does this happen?
    import javax.swing.*;
    import java.awt.Container;
    import java.awt.Graphics;
    public class Flicker implements Runnable {
         public static void main(String args[]) {
              SwingUtilities.invokeLater(new Flicker());
         public void run() {
              JFrame jf = new MyFrame();
              jf.setSize(800, 800);
              Container jfcp = jf.getContentPane();
              jfcp.setLayout(null);
              JComponent jtf = new MyTextField();
              jtf.setLocation(500, 500);
              jtf.setSize(jtf.getPreferredSize());
              jfcp.add(jtf);
              jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              System.err.println("Setting frame visible");
              jf.setVisible(true);
         class MyTextField extends JTextField {
              @Override
              public void paint(Graphics g) {
                   System.err.println("JTextField paint called");
                   super.paint(g);
              MyTextField() {
                   super("Field text");
         class MyFrame extends JFrame {
              public void paint(Graphics g) {
                   System.err.println("JFrame paint called");
                   super.paint(g);
              public void update(Graphics g) {
                   System.err.println("JFrame update called");
                   super.update(g);
    }

    OK, FWIW, what I've surmised is this. When the JFrame is set visible, a PaintEvent is posted to the event queue. Then, when the swing component's repaint methods are called, the RepaintManager posts an InvocationEvent to run some code that will call the components' paint(Graphics) methods.
    The problem is that InvocationEvent events have a higher priority than PaintEvent events, so when the code constructing the component graph completes, the first event that gets dispatched is the one for the RepaintManager, which accordingly paints the components. Then finally the paint event is dispatched, and the frame paints itself and its children.
    A workaround, of sorts, is to set the frame visible as soon as it has been constructed and had its size and position set, and then to defer the rest of the code to a point after the PaintEvent is dispatched. This can be done using an AwtEventListener, as shown below. The major downside is that adding such a listener may be prevented by a SecurityManager.
    It becomes more fun when a layout manager is used for the frame, because it cannot be sized until all its descendant components have been added. The best I can think of is to add them all, pack the frame, then remove them again (or just their common ancestor), set the frame visible, and again wait for the paint event before adding them back.
    I can only assume that everyone out there is using such fast machines that the flicker is not visible.
    Sylvia.
    import javax.swing.*;
    import java.awt.AWTEvent;
    import java.awt.Container;
    import java.awt.Graphics;
    import java.awt.Toolkit;
    import java.awt.Component;
    import java.awt.event.AWTEventListener;
    import java.awt.event.PaintEvent;
    public class Flicker implements Runnable {
         public static void main(String args[]) {
              SwingUtilities.invokeLater(new Flicker());
         public void run() {
              final JFrame jf = new MyFrame();
              jf.setSize(800, 800);
              jf.setVisible(true);
              new MyAwtEventListener(jf, new Runnable() {
                   public void run() {
                        secondPart(jf);
         private void secondPart(JFrame jf) {
              Container jfcp = jf.getContentPane();
              jfcp.setLayout(null);
              JComponent jtf = new MyTextField();
              jtf.setLocation(500, 500);
              jtf.setSize(jtf.getPreferredSize());
              jfcp.add(jtf);
              jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              System.err.println("Setting frame visible");
              jf.setVisible(true);
         static class MyAwtEventListener implements AWTEventListener {
              private final Runnable runnable;
              private final Component component;
              MyAwtEventListener(Component component, Runnable runnable) {
                   this.runnable = runnable;
                   this.component = component;
                   Toolkit.getDefaultToolkit().addAWTEventListener(this, PaintEvent.PAINT_EVENT_MASK);
              public void eventDispatched(AWTEvent event) {
                   if(event.getID() == PaintEvent.PAINT && event.getSource() == component) {
                        Toolkit.getDefaultToolkit().removeAWTEventListener(this);
                        SwingUtilities.invokeLater(runnable);
         class MyTextField extends JTextField {
              @Override
              public void paint(Graphics g) {
                   System.err.println("JTextField paint called");
                   super.paint(g);
              MyTextField() {
                   super("Field text");
         class MyFrame extends JFrame {
              public void paint(Graphics g) {
                   System.err.println("JFrame paint called");
              public void update(Graphics g) {
                   System.err.println("JFrame update called");
                   super.update(g);
    }

  • I would like to cancel the photoshop program. Order n° AD005353543IT. Thank you

    I would like to cancel the photoshop program. Order n° AD005353543IT. Thank you

    We're not really going to be able to help you here in this user to user help forum.
    My suggestion would be to find an Adobe Sales or Customer Support number and call it ASAP.
    -Noel

  • My computer broken, help with Photoshop-program!

    Hi!  Started my membership in creative cloud Photoshop program 3.6.2014. AD005025068FI I downloaded program on my I downloaded program to my laptop computer, which broke yesterday. Two questions, how can I get Photoshop program to another computer use? Can the program be in two of my computer just in case?
    t.Kalervo

    Yes, you may have it installed on two computers at any one time. Simply install the Creative Cloud app, sign in, and install Photoshop.
    Benjamin

  • I am currently using the adobe cloud service and would like to give my granddaughter my original lightroom and photoshop programs.  Would do I need to do to remove them from my computer to hers?  The lightroom 5 program has been replaced with the cloud ve

    I am currently using the adobe cloud service and would like to give my granddaughter my original lightroom and photoshop programs.  Would do I need to do to remove them from my computer to hers?  The lightroom 5 program has been replaced with the cloud version on my computer.

    Follow the steps listed at  Transfer an Adobe product license
    Lightroom has no activation check so you don't need to do anything to your computer. Your old copy of Photoshop must be deactivated / uninstalled if you haven't already done so.

  • What photoshop program to create cards?

    I am currently using Adobe Lightroom 4 to edit and and enhance my photos.  As of recently I was asked to make some birthday invitations on 5X7 cardstock.  I haven't even thought about making or creating templates for cards.  What I would like to know is what Adobe Photoshop program would be best for me to use to create and or download photo templates for printing?  I don't want to fork out too much money, but would also like to be able to play around with it a little.  Would Photoshop Elements 10 work for this?  It's on sale down the road from me and can pick it up today.  I just need to know if this will work for the specific plans I have.  Eventually I'll be making Christmas cards and various differetn things.  I will not be printing from home, but will send out for print.  Thanks for any and all advice!

    Hi,
    Yes, Photoshop Elements 10 will be of great help in making greeting cards as you are looking for.
    Its good software that can do the things which you are willing to do.
    Thanks,
    Baljeet

  • I need help with my photoshop program. I need to talk to someone on the phone.

    I would like to talk to a support person on the phone about operating my photoshop program. It is not following commands properly!!

    @sbarabas:
    This is why I don't go online for help. You send me to another site when I have a job to do. Cannot go through this for two days. I would go broke.
    Well, you have to choose from one of the various options available for support to be able to talk to someone. Numbers are also region-specific. If you go in to this page http://helpx.adobe.com/contact/index.html you'll be able to drill down to what you want support for. You can get specific numbers there.
    I bought a new MacBook Pro and transfered everything from Time Machine. Now my Photoshop is not responding to my commands properly. It does what it wants to do and crashes when I move layers with the mouse.
    The answer to your issue is in your question itself. When you buy a new MacBook Pro and migrate data using Migration Assistant or Time Machine, Photoshop WILL misbehave. You have to do a fresh install of Photoshop using the installation disc or the downloaded installation file (if you opted for electronic delivery). This will 110% fix your issue.
    Please understand we're here to offer you solutions as well. We're not all Adobe employees, most of us are 'users' just like you who are voluntarily contributing to this community. We're more than willing to help you resolve this issue (just like we help 100s of users each day resolve their issues) if you're willing to provide us relevant and detailed information.
    Please feel free to post back with any other questions you may have.
    Regards,
    ST

  • I try to install my CS 5 Photoshop program and it won't open.

    I install my CS 5 Photoshop program and an error comes up in the install section. When I go to open the program an error shows up stating "Could not initialize Photoshop because
    the preferences file was invalid (it has been deleted)". How did this happen and how can it be fixed?

    If the rest of the install was successful the following should help:
    Press and hold Alt+Control+Shift (Windows) or Option+Command+Shift (Mac OS) as you start Photoshop. You are prompted to delete the current settings; Click Yes.
    Let us know how it goes.

  • How can I watermark 100 page documents without purchasing the full Photoshop program?

    How can I watermark 100 page PDF documents without purchasing the whole Photoshop program for a MAC?

    Surely you mean "the full Acrobat program". You can use the free trial version.

  • Hi, i can't start up my photoshop program. Its showing a pop up error 6. how can i resolve it?

    Hi, i can't start up my photoshop program. Its showing a pop up error 6. how can i resolve it?

    Please refer:
    http://helpx.adobe.com/x-productkb/global/error-licensing-stopped-mac-os.html
    Regards,
    Ashutosh

  • Hi. Good morning, I intend to purchase the Photography Photoshop program. The Rs 499/month one. I currently use an Mac Air. But intend to buy a iMac in about 2 months time. Will I be able to transfer this program or continue using this on my new machine?

    Hi. Good morning, I intend to purchase the Photography Photoshop program. The Rs 499/month one. I currently use an Mac Air. But intend to buy a iMac in about 2 months time. Will I be able to transfer this program or continue using this on my new machine?

    My eyes just glazed over...Please in the future break down each of your issues with paragraphs separated by two carriage returns. It would be much easier when trying to address your issues.
    Go to Apple menu -> System Preferences -> Keyboard and Mouse -> Mouse
    And edit your mouse settings to do what you want it to do.
    Secondly, this is not the place to vent. If you have a complaint, there is:
    http://www.apple.com/feedback/
    or http://www.apple.com/contact/
    We are just end users here helping other end users.
    Third, from my understanding, it would appear you are concerned about the noise the hard drive makes when it falls asleep? Why not put your machine in screen saver mode instead? Apple menu -> System Preferences -> Energy Saver turn off all Energy Saver settings, or set them to run Never.
    Fourth, if your machine was purchased just a few days ago, you may still be able to get an exchange from the store, quicker than you can get a repair done. You may want to look into that possibility.
    Fifth, it does appear you found the Logic forum. I would persist in asking there how to solve your technical issue with Logic regarding the audio. It may be you don't have to do anything special to the hard drive. Remember audio can be transmitted by wire, avoiding ambient sounds.
    Good luck!

  • How do I convert pics from old Adobe Photoshop program on cd in pdd to jpeg?

    I have cds with pdd pics from my old (1999) Adobe Photoshop program.  My system won't open them.  I now have Photoshop Elements 8.  I can go to Organize and get photos from the cd.  They are in my catalog and I can open them there.
    How do I convert them to jpeg?
    When I go to Edit, I can't find my photos in the catalog.  I only find the new pics in my Photo Gallery that are already jpeg.
    I feel as though I'm missing something simple.  Can someone help me?

    Thanks for your response.  I did get a way to do it with the software I already have.
    Date: Thu, 27 May 2010 00:15:37 -0600
    From: [email protected]
    To: [email protected]
    Subject: How do I convert pics from old Adobe Photoshop program on cd in pdd to jpeg?
    There's a utility called "Image Converter Plus" that can do this for you.  They modestly calls it "the best image converter in the industry.  You can see their web site at:  http://www.imageconverterplus.com/help-center/work-with-icp/examples/how-to-convert/PDD_jp g.html .
    Here's from their web site:
    h1. How to convert PDD to JPG
    Converting PDD to JPG is very easy with Image Converter Plus. In Windows Explorer, select a PDD image and click your right mouse button. In the context menu, select Convert to submenu and click Custom convert line.
    ==========
    This seems to be exactly what you want.
    Since they have a separate "download" and "purchase" section, it's not clear to me if you have to pay the $49 license fee to use the utility.  You may have to purchase the license to get batch processing. 
    Even if you do have to pay, my philosophy in life is that if someone can rescue some important pictures with their $49 utility, then it's worth the price.
    >

  • Hello my computer will not load the photoshop program as it has Inefficient disc space how can i fix this please?

    hello my computer will not load the photoshop program as it has Inefficient disc space how can i fix this please?
    Regards
    Geoff

    Hi The Lad,
    If you have "INSUFFICIENT" disk space, then you can try and change the install location while performing the installation of the desired product. I am not sure when the error message would pop up saying that the disk space is "INEFFICIENT". Could you please share a screen shot of the error message along with the system information.
    Cheers,
    Kartikay Sharma

Maybe you are looking for

  • Installing Java Stack - Netweaver 7.0 EHP1

    We currently have our ERP system installed (ECC6) and i am planning to install the Java stack on a separate server for portal and ADS.  I was at the Service Marketplace to download the installation files and was wondering what is all needed.  I have

  • Problem with bridge and Photoshop CS4

    When in Bridge CS4, I want to open a JPEG photo in Photoshop, when double clicking It opens PAINT and not Camera Raw. I have the CS4 on a laptop and no problem there. I matched all the settings and still the desktop opens PAINT instead.

  • How can I specify the path in Form Builder 9.0

    Hi, everyone, could anybody tell me how can I specify the path in Form Buidler 9.0? there is problems when I want to attach library in form builder. thanks to Kuldeep RAwat and Natalia Vidal, I know I should specify the path, but I still don't know h

  • Permission level version history

    In what permission level does one can see the version history for a list record where versioning is enabled.

  • BlazeDS and Stateful SessionBeans?

    Hi, is it possible to Access Stateful SessionBeans with BlazeDS? And what Application Server do you use, i heard that there might be problems by using GlassFish v2.1. Regards, Florian