Slow Performance of JApplet with Firefox Plugin in Linux

Hi everyone,
I recently revisited an applet I wrote 8 years ago. It's a simple ticker tape. I need a ticker tape for a larger project I am working on, and I had to convert it from AWT to Swing.
Anyway, with the new 1.6.0_xx plugin for Firefox 2.0.0.5 under Fedora 7, the performance is slow and the text scrolls by in a choppy manner. However, if I run the mouse over the JApplet area or the Java console itself while it is running, the text scrolls by smoothly. This does not happen with the 1.5.0_xx series plugin, and although the JApplet was compiled with the 1.4.2_15 compiler, I cannot find a plugin from that series that works with Firefox 2.0.0.x to test if the problem is there as well.
So, can anyone help me out? Is this a known issue with the newest plugin? I don't think there's an error in the code. Both the embedded applet and source code can be found at this URL: http://www.brian-borowski.com/Ticker/
Thanks in advance for your help.
-Brian

I tried to do a simular thing, but I did not notice a performance decrease. However it might be possible that this happens. For example, if you are calling a time critical vi in the second while loop, it will lock all other processes until it is finished. Or maybe you are calling a shared resource (allocate an array, access to a file, using a mutex) that the other loop holds. Until the shared resource is released the first while loop must wait before it can access that resource (memory, file, etc.).
Without looking at the source code it will be hard to say what is causing it. I recommend to remove part by part subVI's from the second loop, to debug where the problem exists. If you want I can have a look at the code, please reply to this thread.
ErikvH
A
pplications Engineering
National Instruments
Attachments:
Digital_Output.vi ‏56 KB

Similar Messages

  • Want to use credit card with firefox but do not see a lock with firefox 5 on linux using priceline

    want to use credit card with firefox but do not see a lock with firefox 5 on linux using priceline

    Type '''about:preferences#applications'''<enter> in the address bar.
    Now follow the picture.

  • Volume buttons interfere with firefox plugins

    Hey there ThinkPad community!
    Recently I have noticed that when using the Adobe Reader Plugin for firefox the volume won't change anymore upon pressing the volume buttons. The onscreen display pops up showing the current volume yet it won't increase or decrease. When pressing the mute button nothing happens at all. This behavior only occurs when the focus is set on the plugin (i.e. I have clicked somewhere on the PDF)
    Also when I am watching a flash video like this one: German News (and again the focus is on the plugin) odd things like video pausing will happen whenever I press or hold one of the three volume buttons. At least then the volume does change.
    Is this a problem of firefox or is it one of the ThinkPad drivers?
    I am using firefox 11.0
    Adobe Acrobat plugin version 10.1.1.33
    Shockwave Flash plugin version 11.1.102.62
    on a X201t with Windows 7 Professional 64bit SP1
    I will tell You the versions of the "volume button control programs" if You tell me which ones those are.

    Hello TheMan and welcome to community,
    The issue is with the software compatibility with firefox.
    Kindly install the updated hot key and power management driver and check if it resolve the issue.
    Best Regards,
    Tanuj
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution".! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Slow performance displaying mails with attachments

    Hi
    I have the following configuration:
    - Windows XP (SP2)
    - Oracle Connector for Outlook version 10.1.3.0.2
    - Outlook 2003 (SP2)
    The problem I have is it is extremely slow when displaying messages that contain attachments even when I am in offline mode.
    When connected I watch the network connection and there seems to be little activity, but it takes 30-40 seconds to display messages.
    Any ideas what could be wrong with my configuration?
    Derek

    I eventually tracked down the source of the slow performance. Nothing to do with the Oracle Connector for Outlook.
    There was a Norton Anit-Virus Add-In (SAVCORP90) that was causing the issue. When I disabled it the message display performance returned to normal.

  • Slow performance refreshing report with multiple subreports in main report

    I am using multiple subreports in my main report that appear to be slowing down the performance of the report considerably. Is there something I can do to increase performance with subreports.

    Hi Brian,
    Subreports are a known performance hog.
    I would suggest going back to the drawing board and rethinking on the layout of the report. The best thing, of course, would be to completely get rid of the subreports by creating a single SQL statement that takes care of all the report's requirements.
    Sometimes it is imperative to have subreports, in which case, you should try to make sure any selection filters from both the Main Report and the Subreport are passed back to the database.
    Also, avoid using Page N of M for better performance - with or without Subreports.
    -Abhilash

  • Slow performance of application with 2 while-loops

    I made an application with one while-loop addressing several FP devices which runs as expected in a FP-2015. Loop time is 100 ms.
    If I add another while-loop with a timer, the performance is very slow. How come?

    I tried to do a simular thing, but I did not notice a performance decrease. However it might be possible that this happens. For example, if you are calling a time critical vi in the second while loop, it will lock all other processes until it is finished. Or maybe you are calling a shared resource (allocate an array, access to a file, using a mutex) that the other loop holds. Until the shared resource is released the first while loop must wait before it can access that resource (memory, file, etc.).
    Without looking at the source code it will be hard to say what is causing it. I recommend to remove part by part subVI's from the second loop, to debug where the problem exists. If you want I can have a look at the code, please reply to this thread.
    ErikvH
    A
    pplications Engineering
    National Instruments
    Attachments:
    Digital_Output.vi ‏56 KB

  • Terrible performance of applet with firefox & appletviewer (not IE)

    I'm working on a worm game with the help of a book on the subject. It's not finished yet, the worm can only move around & stop when hitting a wall. Now as I add the g.drawImage(blahblah) to the paint-method, the performance gets terrible, the mouse responds every 2 seconds and painting errors occur in the applet. I can barely manage to get the appletviewer closed.. The weird thing is, that the applet works smooth on IE, but not on firefox nor appletviewer... Here's the code, "translated" to english with find & replace for your convenience. The worm.java -file is not included, only the main wormgame.java
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class wormgame extends Applet implements Runnable
         Thread Thrd;
         worm Worm;
         Image Background;
         boolean Loaded;
         public void init()
              Worm = new worm(27, 1, 3);
              Background = getImage(getCodeBase(), "tausta.jpg");
              Image ImageToMemory = createImage(size().width, size().height);
              Graphics ImageToMemoryKP = ImageToMemory.getGraphics();
              ImageToMemoryKP.drawImage(Background, 0, 0, this);
              Loaded = false;
              addKeyListener(new WormListener());
         public boolean imageUpdate(Image img, int infoflags, int x, int y, int w, int h)
              if(infoflags == ALLBITS)
                   Loaded = true;
                   repaint();
                   return false;
              return true;
         public void update(Graphics g)
              paint(g);
         public void start()
              if(Thrd == null)
                   Thrd = new Thread(this);
                   Thrd.start();
              requestFocus();
         public void run()
              while(true)
                   Worm.move();
                   if(Worm.isDead())
                        Thrd.suspend();
                   repaint();
                   synchronized(this)
                        try
                             wait(200);
                        catch(InterruptedException e)
         public void paint (Graphics g)
              if(Loaded)
                   g.drawImage(Background, 0, 0, this);
                   showStatus("Finished.");
              else
                   showStatus("Loading gfx...");
              Worm.piirraWorm(g);
              requestFocus();
         class WormListener extends KeyAdapter
              public void keyPressed(KeyEvent e)
                   switch(e.getKeyCode())
                        case KeyEvent.VK_LEFT:
                        if(Worm.parts[0].direction !=Worm.RIGHT)
                             Worm.turn(Worm.LEFT);
                             repaint();
                        break;
                        case KeyEvent.VK_RIGHT:
                        if(Worm.parts[0].direction !=Worm.LEFT)
                             Worm.turn(Worm.RIGHT);
                             repaint();
                        break;
                        case KeyEvent.VK_UP:
                        if(Worm.parts[0].direction !=Worm.DOWN)
                             Worm.turn(Worm.UP);
                             repaint();
                        break;
                        case KeyEvent.VK_DOWN:
                        if(Worm.parts[0].direction !=Worm.UP)
                             Worm.turn(Worm.DOWN);
                             repaint();
                        break;
         }

    Just noticed that it won't work with IE either anymore.. My friend got it working, sounds like there's sth matter with my system? I have the latest jre & jdk, just reinstalled them due to this (didn't help).. here's the address for the applet: http://acdx.net/matopeli/matopeli.htm

  • Slow performance on iMac with Lion

    The performance of my iMac (24-inch, early 2008, 2.8 GHz Intel Core 2 Duo, 2 GB RAM) has degraded significantly since I upgraded to Lion.  I downloaded Lion from the App store and did a direct install before realizing I could do a "clean install".  I've corrected my disk permissions and have over 180 GB of free memeory on my hard drive.  I've done everything I can think of to help address performance issues except:
    1.  Perform a clean install of Lion
    2.  Upgrade my RAM.
    I've created Lion Bootable DVD in anticipation of needing to do a clean install, but am unsure of what the potential negative impact of this would be (i.e. lost data).  It would seem upgrading my RAM to 4GB would be a good move from what several threads are recommending as 2GB RAM appears to be the bare minimum.
    A question to the group is what are the risks of a clean install and how do I minimize them?  
    Will an upgrade in RAM solve this problem (have others experienced this issue and solved it with this approach)?
    Are there any other things I should consider?
    I love Apple products and really want to like Lion, but so far not impressed as this has been a significantly negative experience.
    Thanks

    Bermudagord wrote:
    I've created Lion Bootable DVD in anticipation of needing to do a clean install, but am unsure of what the potential negative impact of this would be (i.e. lost data).
    A question to the group is what are the risks of a clean install and how do I minimize them?
    A clean install would be adviseable for Lion. Be sure to have a good backup preferably SuperDuper or CarbonCopy Cloner
    When you are in Setup Assistant do your migration. Migrate only apps and data to minimize the chance of any other corruption in your previous system.
    If you want to revert to SL just backup your system in the same manner and use your SL install disk, then migrate what you need.

  • Slow performance of treeTable with 35,000 rows

    I have a page that has a vertical Panel Splitter. Thre first facet of the
    Panel Splitter
    contains a Panel Strech Layout. Its center facet contains a treeTable whose
    value has been
    derived from #{pageFlowScope.mapperUIBean.
    targetTreeModelForCurrentMappingSet}. The targetTreeModelForCurrentMappingSet
    has been populated in the mapperUIBean with over 35,000 rows.
    When I run the page and click on any row (either the first or last row), it
    processes the
    selectionListener method that was declared but it takes about 25-30 seconds
    before it processes it.
    The same thing is true when I drag something into a row.
    I am on jdev 11.1.1.6.1.
    Thanks for any help provided.

    Hi,
    hard to tell. There is nothing else than the description of the behavior, which is not enough for a guess. If the rows are saved in a managed bean in page flow scope, the question is how you get them out into the tree table. If you can intercept this and print time informations, it may give you an idea
    Frank

  • Slow performance of report with Cal year

    Experts,
      Hope all is OK . We have  BW appraisal reports, one of which is Appraisal markings by grade report having Calendar year as selection variable.
    If I run this report with calendar year as selection parameter , this reports is taking very very long time and is not doing any thing .
    If I remove Calendar year in the report, then the report is executing in a reasonable amount of time.
    But we need calendar year as a variable in the report. Please help me why with this variable taking very long time ?
    I appreciate any advice.
    Thanks

    Hello Manoj,
    Take into consideration creating a aggregate on Calyear.
    Your problem is because of  variable usage, your problem is data selection of calyear. If you create and aggregation on this cube by Calyear, selection will be very fast.
    Sarhan.

  • Hangs, severe slowness and lock-ups running Firefox 27.0 / 28.0 on Windows XP / Is it possible to block plug-in container?

    Been experiencing severe slowness and lock-ups with Firefox of late, which ends with a sudden drop in memory usage and me having to repeatedly shut it down through Task Manager. I have created a new profile and disabled hardware acceleration. I have tried disabling all plug-ins and extensions, yet I noticed that at times (not always) plug-in container was still an active process, which I don't understand. Why would it be active when there are no enabled plug-ins? I also noticed that when plug-in container is not active (showing under Processes in Task Manager) I do not have this problem and Firefox runs normally? I need to block plug-in container. Please help.

    I have just tried on Windows 7 and used process explorer on that. I would expect the results to be displayed in a similar manner on Windows XP.
    Plugin-container is shown as being run from Firefox, and in turn if I mouse over or left click the line for plugin-container .exe then under ''command line'' it tells me what is running, in my case at this instance it is Flashplayer and so it displays
    .... \Macromed\Flash\NPSWF32_12_0_0_77.dll .... plugin ....
    It is identifying it is FlashPlayer
    The worry with your apparently unknown operation is that within the plugin-container it may be safe but if plugin-container is disabled maybe it could be malware and cause a problem.

  • Extremely slow performance with Radeon HD 7870

    Hi,
    I am using a number of Adobe programs on my new Windows 8 64 bit system, with 16 gigs of ram, an Intel Core i5 2.67ghz, and AMD Radeon HD 7870 2 gig. All the programs (including After Effects and Illustrator) work very well with the exception of Photoshop CS6 64 bit, which has extremely slow performance with Use Graphics Processor enabled in my preferences (which Photoshop selects by default). If I turn off Use Graphics Processor, the slow performance vanishes. If I change Drawing Mode to Basic, there might be a slightly detectable improvement over Normal and Advanced, but it's still horribly slow. The refresh rate seems to be just a few frames per second. Everything is slow: brushes, zooming, panning, everything.
    I've tried changing the settings I've seen suggested elsewhere: I switched Cache levels to 2, history states to 10, and tile size to 128k. No effect. Photoshop is currently at the default of using 60% of available ram. Efficiency has remained at 100% throughout all my tests. Also, this slow performance has affected me from the moment I installed Photoshop; it didn't crop up after previous good performance. The problem exists regardless of the size or number of documents I have open. Performance is still terrible even when I create a 500 x 500 pixel blank new canvas and try a simple task like drawing with the brush.
    Photoshop is fully up to date, and so are my graphics drivers (Catalyst version 13.1). Any help would be greatly appreciated; at the moment performance is so bad in Photoshop that it's unusable with graphics acceleration enabled. Thanks in advance for replying.
    Photoshop System Info:
    Adobe Photoshop Version: 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00) x64
    Operating System: Windows 8 64-bit
    Version: 6.2
    System architecture: Intel CPU Family:6, Model:14, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 4
    Processor speed: 2665 MHz
    Built-in memory: 16379 MB
    Free memory: 13443 MB
    Memory available to Photoshop: 14697 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 2
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 1.2 AMD-APP (1084.4)
    OpenGL Version: 3.0
    Video Rect Texture Size: 16384
    OpenGL Memory: 2048 MB
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 7800 Series
    Display: 1
    Display Bounds: top=0, left=0, bottom=1080, right=1920
    Video Card Number: 2
    Video Card: AMD Radeon HD 7800 Series
    Driver Version:
    Driver Date:
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: AMD Radeon HD 7800 Series
    Video Card Memory: 2048 MB
    Video Card Number: 1
    Video Card: Microsoft Basic Render Driver
    Driver Version: 9.12.0.0
    Driver Date: 20121219000000.000000-000
    Video Card Driver:
    Video Mode:
    Video Card Caption: Microsoft Basic Render Driver
    Video Card Memory: 0 MB
    Serial number: 90970078453021833509
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\RAFFAE~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 931.5G, 534.8G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       ACE.dll   ACE 2012/06/05-15:16:32   66.507768   66.507768
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/09/10-12:31:21   5.0.4   79.517869
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1686  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/06/05-15:16:32   66.507768   66.507768
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/06/05-15:16:32   66.507768   66.507768
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/06/05-15:16:32   66.507768   66.507768
       BIBUtils.dll   BIBUtils 2012/06/05-15:16:32   66.507768   66.507768
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.1.0.20577   2.1.0.20577
       CoolType.dll   CoolType 2012/06/05-15:16:32   66.507768   66.507768
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   2.1.2.1681  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
    Required plug-ins:
       3D Studio 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       Angled Strokes 13.0
       Average 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.3
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Clouds 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Collada 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Embed Watermark 4.0
       Entropy 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Extrude 13.0
       FastCore Routines 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Maximum 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Mean 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Measurement Core 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Median 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Mezzotint 13.0
       Minimum 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       MMXCore Routines 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Picture Package Filter 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Pinch 13.0
       Pixar 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Range 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.1.2
       Shear 13.0
       Skewness 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       STL 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Sumi-e 13.0
       Summation 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Variations 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       WIA Support 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Wind 13.0
       Wireless Bitmap 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       ZigZag 13.0
    Optional and third party plug-ins:
       DAZ Studio 3D Bridge 12.0
       DazUpdateScene 12.0
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    Great news!
    I followed your suggestion, Noel, and uninstalled my drivers with the Catalyst Uninstall Utility (which I hadn't used before), rebooted, reinstalled Catalyst 13.2 Beta 7, rebooted, deleted the PS Prefs, started PS, and now the performance is radically improved!
    It baffles me why I would need to do a clean driver uninstall in a new system environment that has only ever had this video card, and is only a few months old, but that action seems to be what's improved the situation. Note that because I deleted the PS preferences, the good performance now occurs with the default Use Graphics Processor enabled, and Drawing Mode set to Advanced (with every feature in the Advanced dialog checked except 30bit display).
    Having no reference point, I can't tell for sure if performance is as good as it theoretically ought to be for my system specs, but using the standard 13px brush is only slightly laggy behind the cursor, even if I become reckless and squiggle on the canvas violently. It wasn't just sluggish response before: Photoshop seemed to be in pain trying to draw the line segments as it laboured to catch up to the cursor. That is pretty much gone now.
    Much more tellingly, zooming and panning the canvas is like it ought to be, responsive and clean, more or less like it was for me in CS4 with my old Nvidia 9600GT. The poor performance with zooming and panning was the most worrying aspect of the issue. It's a great relief to see these working more properly now.
    I have to confess I'm a little embarrassed to have drug you through all this hassle only to discover that something as rudimentary as properly cleaning out the drivers would be the apparent solution. I never would have imagined that doing that, with such a new and stable system, would make any difference, since I don't have a legacy of older drivers dotting my hard drive. In any event, I'm really grateful that you guys took the time to try to help me.
    In the interest of completeness, here's the relevant portion of my system info after doing the reinstall steps I mentioned above:
    Adobe Photoshop Version: 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00) x64
    Operating System: Windows 8 64-bit
    Version: 6.2
    System architecture: Intel CPU Family:6, Model:14, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 4
    Processor speed: 2665 MHz
    Built-in memory: 16379 MB
    Free memory: 13680 MB
    Memory available to Photoshop: 14695 MB
    Memory used by Photoshop: 60 %
    Image tile size: 1024K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 3.0
    OpenGL Version: 3.0
    Video Rect Texture Size: 16384
    OpenGL Memory: 2048 MB
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 7800 Series
    Display: 1
    Display Bounds: top=0, left=0, bottom=1080, right=1920
    Video Card Number: 2
    Video Card: AMD Radeon HD 7800 Series
    Driver Version:
    Driver Date:
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: AMD Radeon HD 7800 Series
    Video Card Memory: 2048 MB
    Video Card Number: 1
    Video Card: Microsoft Basic Render Driver
    Driver Version: 12.100.17.0
    Driver Date: 20130226000000.000000-000
    Video Card Driver:
    Video Mode:
    Video Card Caption: Microsoft Basic Render Driver
    Video Card Memory: 0 MB
    As you can see, the Microsoft Basic Render Driver still appears as a Video Card in the list. This presumably has something to do with Windows 8, and I really don't know if its presence here is still a sign that my card is not being used to its optimal capability. I have a hunch that the slight lag that I am still experiencing with the brush when Use Graphics Processor is on -- totally absent with the acceleration turned off -- implies that Photoshop is still unable to take maximum advantage of my card. I would assume that the brush tool should be more responsive with acceleration on than off, in a rig without any issues, but that's just assumption on my part. If you turn off Use Graphics Processor on your systems, is the brush tool more or less responsive?
    But again, panning the canvas with the hand tool is now extremely responsive, without any screen tearing or visible lag, and that's a massive improvement over the total meltdown of performance I was suffering from before.
    Thanks again very much for your help. I'm grateful to all of you who took the time to chime in.

  • Firefox crash with Shockwave plugin

    I recently switched to Firefox since am having much troubles with G Chrome, The problem is that when my Shockwave Plug in is enabled, Firefox Freezes when it's loading a page, untill i disabled Shockwave and it doesn't freeze anymore but i can't do anything that needs Shockwave to run since it's disabled, i have tried restoring and everything, can someone help me please?

    Recent crashes of certain multimedia contents (this includes Youtube videos, certain flash games and other applications) in conjunction with Firefox are most probably caused by a recent Flash update and/or a malfunctioning browser plugin such as Real Player.
    In order to remedy the problem, please perform the steps mentioned in these Knowledge Base articles:
    * [[Flash Plugin - Keep it up to date and troubleshoot problems]]
    * [[Flash 11.3 crashes]]
    * [[Flash 11.3 doesn't load video in Firefox]]
    Other, more technical information about these issues can be found under these Links:
    * http://forums.adobe.com/thread/1018071?tstart=0
    * http://blogs.adobe.com/asset/2012/06/inside-flash-player-protected-mode-for-firefox.html
    Please tell us if this helped!

  • I had Firefix, however I downloaded the newest Firefox along with all plugins. Now when I click in the desktop icon firefox refuses to open my default webpage. Why?

    I run Windows 7. I downloaded Firefox 6.0 for Windows which resulted in the following which I cannot fix:
    "I had Firefix, however I downloaded the newest Firefox along with all plugins. Now when I click in the desktop icon firefox refuses to open my default webpage. Why?....How do I fix this"
    I can go to internet explorer or AOL and it opens right up to my homepage but not when I click on Firefox.

    That problem can be caused by the Yahoo! Toolbar that extents too much downwards and covers the top part of the browser window and thus makes links in that part of the screen not clickable.
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    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

  • Why is my computer now slower, with Firefox 4, then it was with previous version? It stops and crashes constantly. How can I go back to the previous version?

    When I am on Facebook or playing a game, it will freeze and I have to hit control alt delete, to get any response. Within a couple more seconds the same problem occurs. I did not have this problem with the previous version.

    I tried so hard with FF4 but no deal. It was considerably MUCH slower than 3.6. Every page just had a 2~3 second wait before it loaded up. This was tested on a brand new Windows 7 64-bit install machine too.
    Flash ran much more cpu intensive as well. I played many flash based games in 3.6 and my cpu usage was never always as it was with FF4 in the 90%-100% range.
    I had to get rid of it due to the slowness and the lack of older plugin support: ANYCOLOR which I must run and cannot stand the light colored menu pop ups. Also the buttons in FF4 are worse than 3.6. You can't see them when you have a persona applied.
    Staying with 3.6 until 4 speeds up or will give 4.1 a try.

Maybe you are looking for

  • Unable to launch iTunes recently after my windows vista update

    When I launch iTunes, the error prompted. "iTunes 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 - "Close program" button. Then the following err

  • How to call another program from LabVIEW?

    Hi! Is there anyone that can answer my question? I have found a similar thread where the user needed to call labVIEW from some program but I want to do the opposite. I made a program in labVIEW that communicates via COM-ports (serial communication) w

  • SYSDATE should be assigned to FIXED DATE

    Hi Experts, SYSDATE on my database should not be changed daily. i need to assign one fixed date to it. Please let me know which parameter i need to set in init.ora file to make this change.

  • How to get music bought on Iphone to my PC?

    I bought most of my music in the iTunes store via IPhone. After having upgraded iTunes to the latest version, I figured out that I am missing a complete music album on my PC. When looking into the iTunes store, bought items, it only shows me that all

  • SUMING OF COST ELEMENT AMOUNT

    Hi Frds Im displaying total cost element value of the project. SELECT SUM ( WTG001 WTG002 WTG003      WTG004 WTG005 WTG006 WTG007      WTG008 WTG009 WTG010 WTG011      WTG012 WTG013 WTG014 WTG015      WTG016 )  INTO WTG00 FROM COSP WHERE OBJNR = PRPS