E520 w / 6630M 2GB card will not correctly work with OpenGL "Advanced" setting in Adobe Photoshop CS5.5

I'm having a problem using the "Advanced" setting OpenGL in Adobe Photoshop CS5.5. While I can choose "Advanced" option, any of the advanced features are available for use (as the panoramic film and animated zoom).

I updated my system with the latest video drivers (8.840.7.3000/6.14.0.3074) and BIOS (1.22/1.10/1.02), however, does not.

Video drivers packed on the Lenovo site aren't the last registered on the site of AMD for the 6630M and I can't update my system with the drivers from the website of AMD.

It is a real problem for me since I bought the laptop as a machine of design production and may not use the graphics card to its full potential. I wrote to AMD to ask them, which resulted in pushing them as stake of Lenovo.

Update: last updated driver (8.882.2.3000 / 6.14.0.3074) fixed a problem
http://support.Lenovo.com/en_US/downloads/detail.page?docid=DS014099

Tags: ThinkPad Notebooks

Similar Questions

  • CF cards will not correctly work with El Capitan

    Using a San Disk USB 3 card reader and the CalDigit FASTA 6GU3 + the PCI card. Everything works fine with 10.8.6, but with El Capitan, I can't copy anything that either of the maps - it hangs then ejects the card and I get an error message that the operation cannot be completed because error i/o and the drive was not ejected. Card back immediately, but the problems of the rehearsals. Boot in sys old and everything is good, then it seems to be a problem of El Cap have deleted previous CALDIGIT drivers for my previous card (which does not work with El Cap), so this isn't the problem.

    Did you mean 10.6.8 Snow Leopard?  There is no Cougar maxed out at 10.8.5 10.8.6.  If you mean the snow leopard, a lot of software is not compatible with 10.7 or later is with older versions.  There should be compatible Compact Flash readers on multifunction printers, as well as some readers you might find http://www.macsales.com

    If it's the same machine that came with 10.6, you can also install 10.6 on another partition or an external hard drive, or if it's a newer than July 20, 2011 Mac, you must put the option run Snow Leopard Server on your Mac.

    Rosetta/PowerPC applications and Lion and above

  • adjustPopupWidth will not correctly work if there is a vertical scroll bar

    Previously, I use "adjustPopupWidth", so that my JComboBox will enough width to display all items in the drop-down list.

    However, I realize when he is present of the vertical scroll bar, 'adjustPopupWidth' will not produce a good width to display all the items in the drop-down list. This causes a horizontal scrollbar to appear as well (which is not what I want)

    A code example is as follows:
    /*
     * To change this template, choose Tools | Templates
     * and open the template in the editor.
     */
    
    /*
     * NewJFrame.java
     *
     * Created on Dec 30, 2010, 12:35:42 AM
     */
    
    package javaapplication24;
    
    import java.awt.Component;
    import java.awt.Dimension;
    import javax.swing.JPopupMenu;
    import javax.swing.JScrollBar;
    import javax.swing.JScrollPane;
    import javax.swing.event.PopupMenuEvent;
    import javax.swing.event.PopupMenuListener;
    import javax.swing.plaf.basic.BasicComboPopup;
    
    /**
     *
     * @author yccheok
     */
    public class NewJFrame extends javax.swing.JFrame {
    
        // Resize JComboBox dropdown doesn't work without customized ListCellRenderer
        private void adjustPopupWidth() {
            if (jComboBox1.getItemCount() == 0) return;
            Object comp = jComboBox1.getUI().getAccessibleChild(jComboBox1, 0);
            if (!(comp instanceof JPopupMenu)) {
                return;
            }
            JPopupMenu popup = (JPopupMenu) comp;
            JScrollPane scrollPane = (JScrollPane) popup.getComponent(0);
    
            //Object value = this.getItemAt(0);
            //Component rendererComp = this.getRenderer().getListCellRendererComponent(null, value, 0, false, false);
            //if (rendererComp instanceof JXTable) {
            //    scrollPane.setColumnHeaderView(((JTable) rendererComp).getTableHeader());
            //}
            BasicComboPopup basic = (BasicComboPopup)comp;
            Dimension prefSize = basic.getList().getPreferredSize();
            Dimension size = scrollPane.getPreferredSize();
    
            size.width = Math.max(size.width, prefSize.width);
            scrollPane.setPreferredSize(size);
            scrollPane.setMaximumSize(size);
            // Do we need to call revalidate?
            //scrollPane.revalidate();
        }
    
        private void adjustScrollBar() {
            final int max_search = 8;
            // i < max_search is just a safe guard when getAccessibleChildrenCount
            // returns an arbitary large number. 8 is magic number
            JPopupMenu popup = null;
            for (int i = 0, count = jComboBox1.getUI().getAccessibleChildrenCount(jComboBox1); i < count && i < max_search; i++) {
                Object o = jComboBox1.getUI().getAccessibleChild(jComboBox1, i);
                if (o instanceof JPopupMenu) {
                    popup = (JPopupMenu)o;
                    break;
                }
            }
            if (popup == null) {
                return;
            }
            JScrollPane scrollPane = null;
            for (int i = 0, count = popup.getComponentCount(); i < count && i < max_search; i++) {
                Component c = popup.getComponent(i);
                if (c instanceof JScrollPane) {
                    scrollPane = (JScrollPane)c;
                    break;
                }
            }
            if (scrollPane == null) {
                return;
            }
            scrollPane.setHorizontalScrollBar(new JScrollBar(JScrollBar.HORIZONTAL));
            scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
        }
    
        private PopupMenuListener getPopupMenuListener() {
            return new PopupMenuListener() {
                @Override
                public void popupMenuWillBecomeVisible(PopupMenuEvent e) {
                    // We will have a much wider drop down list.
                    adjustPopupWidth();
                }
    
                @Override
                public void popupMenuWillBecomeInvisible(PopupMenuEvent e) {
                }
    
                @Override
                public void popupMenuCanceled(PopupMenuEvent e) {
                }
            };
        }
    
        /** Creates new form NewJFrame */
        public NewJFrame() {
            initComponents();
            // Have a wide enough drop down list.
            jComboBox1.addPopupMenuListener(this.getPopupMenuListener());
            adjustScrollBar();
        }
    
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
         */
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {
    
            jComboBox1 = new javax.swing.JComboBox();
    
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
    
            jComboBox1.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Item 1", "Item 2", "Item 3", "Item 4", "Item 5", "Item 6", "Item 7", "long long long long long string", "Item 8", " " }));
    
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(140, 140, 140)
                    .addComponent(jComboBox1, javax.swing.GroupLayout.PREFERRED_SIZE, 108, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(152, Short.MAX_VALUE))
            );
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addComponent(jComboBox1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(269, Short.MAX_VALUE))
            );
    
            pack();
        }// </editor-fold>
    
        /**
        * @param args the command line arguments
        */
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new NewJFrame().setVisible(true);
                }
            });
        }
    
        // Variables declaration - do not modify
        private javax.swing.JComboBox jComboBox1;
        // End of variables declaration
    
    }
    Remove 'Item 1' up to 'Article 7', results in a vertical scroll bar is not displayed. Therefore, "adjustPopupWidth" will work correctly.

    It seems that the calculation within the "adjustPopupWidth", should take into account in the bar vertical scrolling. But how?

    Thank you.

    [url http://www.camick.com/java/blog.html?name=combo-box-popup] Combo Box Popup handles this.

  • EDGE file will not correctly work DPS! Any ideas on what I could do?

    I built an EDGE file up to the size of a layout of iPad full screen (1024 X 768), with a few elements that animate it. I set up correctly and, published "animate Deployment Package. However, when playing in DPS, there is a hesitation (or delay), then, a white - stop in action - then the animation plays very well. I've not coded late or stops.

    I'm not a coder.

    I did several tests with a variety of images of "Post", but I always get the "Hesitation" (of late) room.

    Can you let me know what I'm not doing correctly?

    Thank you!

    I think I know what you're talking about.

    Try the following steps.  First of all in Indesign set your auto play animation and set a deadline for 0.125.  I talked with Adobe and they will set a guideline always have a 0.125 for animations created with Edge delay.  Second, make sure you check "Transparent background" and "scale content worthy."  The good thing is that it is full screen and set to 1024.

    Make sure that you also define an image of the poster on board if you do not receive the empty image until he began to play on the iPad.  Another thing.  DC animations are essentially controlled by Safari on the iPad, you will see a longer than 1/8 of a second that you define.  I attribute that to the iPad have to load it on request before time.

    I hope this helps.

    Ryan.

  • WebFonts and Typekit fonts will not correctly work in Windows7 Chrome

    I tried almost all the browsers for Windows 7 and Chrome is always the black sheep for me (surprisingly not IE). Many fonts typekit and webfonts look perfect in Muse, Muse Preview, IE and Firefox.

    But when I open the Chrome, the horror begins.

    I use this cool site Dani of Muse jams posted for this demonstration (site is not me): http://www.pmorenofotografo.com/

    Google Chrome:

    chrome.jpg

    Notice how the menu looks like all the "pixelated".

    And it's the same site in Firefox:

    firefox.jpg

    The menu seems perfect.

    This problem is making me spend more time choosing the right font for my sites, I'm sure everybody wants their site to look perfect on all browsers out there.

    I used another site to prove that the issue was not my Web sites. Furthermore, none of my sites have this question cause I have spend hours to find fonts that do not resemble this on Chrome.

    Hi Seruhio,

    What you see here is in fact a difference in how Chrome and rendering of fonts. Unfortunately, there is nothing that can be done about it. Chrome font rendering is, for some fonts, not very good, and the only way to really know is to check the appearance of your fonts in the browser. If you are interested, Typekit team made a very long series of blog posts on the difference in rendering of fonts for the web, including recommendations for policies that make it well. Positions are at this point a few years old, but they are still very useful in learning about differences.

  • Satellite X 205-Sli3 - display driver would not correctly work with SLI

    I bought a computer to portable Satellite X 205 - Sli3 in the United States less than five months ago and I had a lot of problems with it lately.

    It happens quite often that the computer crashes without apparent reason, for example when I use Skype, Windows Media Player, or DVD player. Moreover, as quite often happens out of nowhere, I get a blue screen error and the computer shuts down. When this happens, Windows asks me to reboot if I want to search an online solution, and he tells me that there is a problem with my NVidia display driver. I tried to reinstall the most recent available on the Toshiba site display driver (which is since last September, however and therefore not very up-to-date), but problems continue to persist.

    Because of the driver problem, I am also unable to use the NVidia SLI technology, because whenever I have try to activate, I get either a blue screen error or computer hangs momentarily followed by the message: "display driver stopped responding and has recovered. Display driver nvlddmkm stopped responding and has successfully recovered. » ??

    Finally, I can't put my computer into sleep or Hibernate. My guess is that it is also linked to the question of pilot.

    Help from anyone in this matter would be greatly appreciated.

    Best regards

    Martin

    Hi mate,

    sounds like a hardware issue. It would be wise to send the machine to the nearest service partner in your country because you won´t be able to fix it yourself.
    I guess it has something to do with the VGA card, or among the memory modules would not work as they should.

    I can give you a link to find the nearest service partner in your country and them just contact them to explain your problem:

    http://EU.computers.Toshiba-Europe.com/cgi-bin/ToshibaCSG/download_whitepaper.jsp?service=EU&WHITEPAPER_ID=0 000000871

    Welcome them

  • USB port from a digital Multiport card will not read the external SSD drive. Right USB - c for the USB adapter works fine.

    USB port from a digital Multiport card will not read the external SSD drive. Right USB - c for the USB adapter works fine.

    It's a new 12 '' MacBook

  • SD card will not rise unless I have restart

    My SD card will not rise unless I restart the computer, can someone help?

    Try resetting the PRAM your next restart according to the iMac Intel SCM and reset the PRAM

  • FreeCell card will not stay up

    When I play freecell, that my card will not stay up in the third blockit falls in can help you

    Hello

    -What version of Windows is installed on your computer?

    If you use Windows 7, follow the steps mentioned below and get back to us with the results.

    Uninstall and reinstall the game.

    a. Click Start, in the start search box type "appwiz.cpl" and press ENTER.

    b. click on turn Windows features on or off.

    c. clear the check mark before the games.

    d. click OK.

    e. restart the computer.

    f. re - turn on the device by placing a check mark before the games.

    g. restart the computer and check if the games to launch successfully.

    Reference:

    Turn on or off Windows features

    http://Windows.Microsoft.com/en-us/Windows7/turn-Windows-features-on-or-off

    I hope that helps!

  • Deskjet 6122 driver will not properly work on a HP Proliant ML 150 6 Win Server

    Deskjet 6122 driver will not properly work on a HP Proliant ML 150 6 server running Window server 2003 Enterprise edition SP2. I have loaded driver 990c and it works, but the side two the 6122 print function will not work with 990c. Is there any solution for this?

    I'm afraid that there is no specific driver for this OS. The 990c driver will be the only option to get to work. I'm sorry.

  • Windows 8 - Photoshop CS5.1 crashes at startup. Error message: "Adobe Photoshop CS5.1 has stopped working. A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available. »

    Hello!

    I got the student version software Adobe Creative Suite 5.5 Design Premium for several years now.

    When I got my computer Windows 8 I installed the software without problem.

    Last week when I tried to open Photoshop, I get the following error: "Adobe Photoshop CS5.1 has stopped working. A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available. »

    I disabled and uninstalled all of the Creative Suite and then reinstalled. I am able to open other programs, but still the same message for Photoshop.

    What can I do?

    I found that the problem was with Nik filters I used. The filters have been messing around with Photoshop initialization. I uninstalled and reinstalled the filters and now Photoshop works like a charm.

    It seems that this forum is dead?

    Fortunately, I managed to solve the problems on my own and figured out the problem...

  • I bought the Adobe Photoshop CS5 and Lightroom 3 on a CD. However, I now have a 3 Surface Pro who does not have a CD player. Please give me a way for software downloaded from the internet. Thank you.

    I bought the Adobe Photoshop CS5 and Lightroom 3 on a CD. However, I now have a 3 Surface Pro who does not have a CD player. Please give me a way for software downloaded from the internet. Thank you.

    Download & install instructions https://forums.adobe.com/thread/2003339 can help

    -includes a link to access a page to download the Adobe programs if you do not have a disk or drive

    -Cloud desktop http://helpx.adobe.com/creative-cloud/help/creative-cloud-desktop.html

    -Cloud Getting Started https://helpx.adobe.com/creative-cloud.html

    -you will need to enter your original serial number during the installation for non-Cloud programs

    - or kglad links in response to #1 here can help https://forums.adobe.com/thread/2081216

    Also go to https://forums.adobe.com/community/creative_cloud/creative_cloud_faq

    IF Windows 10 read below

    Cloud & Win10 https://helpx.adobe.com/creative-cloud/kb/Windows_10_compatibility_FAQ.html

    -In addition, only CURRENT products will be tested and updated for compatibility with Windows 10

    - so if you have an older program, update you to Windows 10 at YOUR risk of problems

    -You can get CS6 and previous programs to install and run, or you can not (some do, some don't)

    -IF not, Details of the message from the error messages and a person may be able to help (just not Adobe)

    An idea that MAY work to install or run some programs in Windows 10 old... works for some, not for others

    -http://www.tenforums.com/tutorials/15523-compatibility-mode-settings-apps-change-windows-1 0 - a.html

    - or run as Administrator http://forums.adobe.com/thread/969395 to assign permissions... said FULL yet, but sometimes it is necessary for all Adobe programs (this is same as using an administrator account)

  • Update of Firefox 4. Realize some websites does not yet work with FF4. How/where can I download the older version of FF?

    Update of Firefox 4. Realize some websites does not yet work with FF4. How/where can I download the older version of FF?

    ^ Why post if you don't have the answer to the question?

    You can get Firefox here 3.6.16.

    http://www.Mozilla.com/en-us/Firefox/all-older.html

  • Please, my laptop was stolen and I couldn't turn my adobe photoshop cs5 for her and now I want to install on my new PC and I can not, I do it? I lost my installation cd? HELP ME PLEASE. ?

    Please, my laptop was stolen and I couldn't turn my adobe photoshop cs5 for her and now I want to install on my new PC and I can not, I do it? I lost my installation cd? HELP ME PLEASE.

    Hello

    Please see

    Find the serial key find the serial number of your product Adobe quickly

    Download link Download Adobe Creative Suite 5 products

    Let us know if this helps!

  • Looking for some practice files for video in line/book of "Adobe Photoshop CS5 Extended: Essentials. I use the tutorial via membership in Safari book online and the files are not available on Safari.  Do you know where I can get the files?

    Looking for some practice files for video in line/book of "Adobe Photoshop CS5 Extended: Essentials. I use the tutorial via membership in Safari book online and the files are not available on Safari.  Do you know where I can get the files?

    Looks like the manufacturer was "Total Training. I can't find the title to Adobe.com

    http://totaltraining.com/store/Photoshop-CS5-extended-Essentials/

Maybe you are looking for