Still no solution against choppy animations?

Hello,
since Leopard came out, I am experiencing choppy dock and expose animations. Somewhere I found a solution which seems to work, its a terminal command.
sudo defaults write /Library/Preferences/com.apple.windowserver Compositor -dict deferredUpdates 1
However it lags now as soon as I utilize my computer, even when I copy files. That bugs me, so I reinstalled MacOS (Couldnt find a way to undo that command, putting the variable to 0 didn't help). So now I have these annoying choppy windows again.
When is Apple finally going to fix this? I'm about to sell my MacBook Pro to get a Air eventually if this is not fixed soon, this bugs me really bad.
Bye,
Luka

I tried running that command, but when it asks me to input my password, my keys don't do anything/ It just won't let me type anything when it comes time to enter it.

Similar Messages

  • Filling Large Rectangle Causes Choppy Animation

    <Font Size = 2>Hello everyone,
    I hope you guys can help me with this.
    I am working on an application that needs to fade in a large rectangle matching the size of its container. What I have noticed is I can easily achieve smooth animations at sizes up to 1000x1000 however when reaching sizes such as 1500x1500 the animations begin to appear choppy. It gets even worse if I make the window the size of my screen resolution which is 2560x1440. I have created a SSCCE to demonstrate the problem. I have the paint method painting several large rectangles just to amplify the problem I am experiencing. So I was wondering is there anyway to get rid of these choppy animations so that the rectangle(s) appear to fade in smooth.
    Thank you for your help :)
    import java.awt.*;
    import javax.swing.*;
    import java.util.concurrent.*;
    public class Lag {
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    new Lag();
        Toolkit kit = Toolkit.getDefaultToolkit();
        Dimension screenSize = kit.getScreenSize();
        float opacity = 0f;
        PaintSurface canvas = new PaintSurface();
        JFrame frame = new JFrame();
        public Lag() {
            ScheduledThreadPoolExecutor executor = new ScheduledThreadPoolExecutor(3);
            executor.scheduleAtFixedRate(new AnimationThread(), 0L, 20L, TimeUnit.MILLISECONDS);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setSize(screenSize);
            frame.setLocation(0,0);
            frame.add(canvas);
            frame.setVisible(true);
        public class AnimationThread implements Runnable {
            public void run() {
                canvas.repaint();
        public class PaintSurface extends JComponent {
            public void paintComponent(Graphics g) {
                Graphics2D g2 = (Graphics2D)g;
                if(opacity < 0.6f) {
                    opacity+=0.05f;
                } else {
                    opacity = 0f;
                g2.setColor(Color.black);
                g2.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, opacity));
                g2.fillRect(0, 0, getWidth(), getHeight());
                g2.fillRect(0, 0, getWidth(), getHeight());
                g2.fillRect(0, 0, getWidth(), getHeight());
    }

    Maxideon wrote:
    Fill in a smaller rectangle, and copyArea() it to the other regions.<Font Size = 2>Thank you both that helps a lot but i've ran into a problem with the copyArea() method. It works like a charm and speeds up the animation a lot however this transparent rectangle is meant to be an overlay on top of other graphics to make it appear as though those other graphics are faded out. When I copyArea() as expected it copies everything in the region I specify and places it in the destination area that I specify. However this becomes undesirable when I have other graphics painted underneath the rectangle and it gets even trickier to solve knowing that I have to paint the transparent rectangle last so that it appears on top of the other graphics. Now the only thing I can think of that might fix this problem is if there were a way to copyArea() from another graphics and paste that copied area to the current graphics. Here an example of the problem below:
    Thank you for your help. I'm not sure if I should post this as another question but I think its still relevant to my first.
    import java.awt.*;
    import java.awt.event.*;
    import java.util.concurrent.*;
    import javax.swing.*;
    public class Lag {
      public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
          @Override
          public void run() {
            new Lag();
      float opacity = 0f;
      PaintSurface canvas = new PaintSurface();
      JFrame frame = new JFrame();
      int repaintCount, paintCount;
      Rectangle paintRect = new Rectangle();
      public Lag() {
        ScheduledThreadPoolExecutor executor = new ScheduledThreadPoolExecutor(3);
        executor.scheduleAtFixedRate(new AnimationThread(), 0L, 20L, TimeUnit.MILLISECONDS);
        //frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.addWindowListener(new WindowAdapter() {
          @Override
          public void windowClosing(WindowEvent e) {
            System.out.println("Repaint count: " + repaintCount);
            System.out.println("Paint count: " + paintCount);
            System.exit(0);
        canvas.addComponentListener(new ComponentAdapter() {
          @Override
          public void componentResized(ComponentEvent e) {
            paintRect.width = canvas.getWidth();
            paintRect.height = canvas.getHeight();
        frame.setExtendedState(JFrame.MAXIMIZED_BOTH);
        frame.add(canvas);
        frame.setVisible(true);
      public class AnimationThread implements Runnable {
        @Override
        public void run() {
          if (opacity < 0.6f) {
            opacity += 0.05f;
          } else {
            opacity = 0f;
          repaintCount++;
          canvas.paintImmediately(paintRect);
      public class PaintSurface extends JComponent {
        @Override
        public void paintComponent(Graphics g) {
          paintCount++;
          Graphics2D g2 = (Graphics2D) g;
          //background graphics get copied to. (as expected)
          g2.setColor(Color.red);
          g2.fillRect(100, 100, 300, 300);
          g2.setColor(Color.black);
          g2.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, opacity));
          g2.fillRect(0, 0, 200, 200);
          for(int i = 0; i<getHeight(); i+=200) {
              for(int x = 0; x < getWidth(); x+=200) {
                  g2.copyArea(0, 0, 200, 200, x, i);
    }

  • Jumpy, choppy animation (imported from Illustrator)

    Hello, I am having a problem with some vines I imported from illustrator having very choppy animation. Every other animation in my project thus far has been smooth, except for the vines which I just want to move slowly and slightly as if blowing in the wind. I did the same effect for some leaves in the background which animate fine, so its something to do with the vines in particular.
    I imported all the shapes from Illustrator (the vine shafts, leaves, and thorns) which came into flash as "drawing objects". I then turned every piece into individual movie clips, and then combined everything further into 4 seperate movie clips I could animate. The animation is very simple, just rotating back and forth ever so slightly accrost 250 frames.
    I uploaded the .swf in question which you can download here: http://www.filedropper.com/splashscreen10
    I appreciate any and all help! Thanks!

    From the sound of it, I'm having this exact same problem. Does anyone have suggestions for how to solve this problem?

  • Choppy animations

    I bought my first mac (mac mini) a week ago. And I experiecing distracting, choppy animations when resizing window, drag and drop operations, in application animations like sliding panels, launchpad animations, expose animations. I upgraded to 5GB ram but doesnt change for animations (programs running, startup very fast, but animations).
    I cant work on Photoshop because its SLOWEST even in 1024x768 document!!!
    This is my first apple product, and i really unhappy.
    Here specs:
    2.3GHz dual-core Intel Core i5
    2GB memory (Upgraded to 5GB)
    500GB hard drive1
    Intel HD Graphics 3000
    OS X Lion
    My friend's Macbook Pro 13.3 have the same specs except 2.5Ghz and his mac have 4GB ram. But his mac doesn't have any choppy animations.
    Why is that happening and how can i solve this problem.

    While I don't have that Mini, I've never seen Intel Integrated Graphics that were worth their weight in feathers..
    Open Activity Monitor, Show:>All Processes, sort on CPU%, see if anything using too much CPU% when this happens, click on Memory tab, do you have many Pageouts?
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.

  • I forgot my security answers and i have provided rescue email same as apple id its been 6 monts and still no solution found i have credits in my account please help

    i forgot my security answers and i have provided rescue email same as apple id its been 6 monts and still no solution found i have credits in my account please help

    Well, of course a rescue address which is the same as the main address (which doesn't work) isn't a lot of use.
    Please see Kappy's comprehensive User Tip:
    https://discussions.apple.com/docs/DOC-4551

  • Choppy Animations in Mac OS X 10.6.4

    Hi, I'm new to these forums and I have just recently encountered a graphics issue. This issue occurred after using AutoCAD for Mac yesterday. I have uninstalled AutoCAD and repaired Disk Permissions. So can anyone help me?
    Thank You,
    Brent

    Hi! Your problem not in Autocad (or any third party soft), choppy animation is very old problem. Try this http://www.youtube.com/watch?v=gmoWoeNrkOs and post your result.

  • Haswell rMBP choppy animations/transitions

    I am noticing some choppy tranistion animations when for example when I'm in Safara with multiple tabs and I pinch out with the gesture so I can navigate trough my other tabs. And no it's not because I've loaded several large pages, I just openend two pages on google to test this.
    Also when I press the button on some applications that support full screen it doesn't go so smooth to say the least.
    These are some examples and there are probably more out there
    Am I the only one having this?
    Thanks

    I also notice some choppy animations in my mavericks rmbp. It' s brand new. First of all the initial apple logo at startup. the animation of it swiping up is bit stuttering.
    And at the end of scrolling is somewhat choppy.
    When maximizing a window.
    When switching between tabs in safari

  • I have paid full membership 3 days ago but when i tried to open AI, PS and ID it still prompt me to enter serial no. I have talked to like 3 different customer service but still no solution and they kept asking me to wait. Someone told me to alter the hos

    I have paid full membership 3 days ago but when i tried to open AI, PS and ID it still prompt me to enter serial no. I have talked to like 3 different customer service but still no solution and they kept asking me to wait. Someone told me to alter the hosts file from the forum but I don't see any hosts file from adobe, how do i alter the hosts file then? Why should I pay so much just for this kind of service? Please someone help.

    I will tell you honestly. I have tried almost everything to fix the issues. I even tried to call Adobe Technical Support so I can fix the activation issue but no answer after waiting for about an hour on the line. I ask the chat but they just kept saying wait for another 24 hrs it should be updated now it has been about 4 days and no changes. I am extremely frustrated to cause I need to work on my computer. So where can I get help? they prompt me to here btw, many many times.

  • Choppy animation RAM preview & rendered

    Hi
    I'm using After Effects CS5.5 Version 10.5.0.253
    i'm working on an iMac 2.66 GHz Intel Core i5 -- 8 GB RAM, OXS Version 10.7.4.
    i'm creating a fairly simple animation in After Effects, manipulating the position and scale of a still image. i've imported a JPEG i created in Photoshop. my problem is that i have to start zoomed in quite far on a detail of the image, and then zoom out all the way so i need to keep it pretty hi-res in order to have a decent quality when scaled at 150%….the smallest file size/resolution i've tried that has not gotten pixelated at full size is a JPEG 4667x3121 pixels @ 200 dpi resulting in a file size 1.4 MB
    but the animation is still jumpy and choppy -- both in RAM preview as well as when rendered.
    not sure if it makes a difference or not, but i have motion blur turned on
    any help would be appreciated -- how can i make the smoothest animation possible?
    is it exporting the still image in a different format or size or does it have to do with something i'm doing inside After Effects?
    thank you

    i've attached a number of screen shots, and i hope they help understand my project and problem better. sorry for the insufficient information so far, and thanks for offering to help.
    here's a more detailed description:
    the animation is 24 seconds long. starts zoomed in on a part of an image -- and as it pans around it in a circular motion, also zooms out.
    attached photos called AE project position 1 - 3 show the beginning, middle and end points of the movements. you can see the keyframes for both position and scale. Rick, i took your advice regarding scale and used a file size that at 100% is almost the size i need. rather than zooming in to 150%, now i only have to start at 116%. in the first screenshot, i left the preview size at such a tiny zoom so that you could see the rather large size of the source image i'm using....much larger than the 1440x900 frame.
    i have tried using keyframe interpolation and the curve on the position parameter to smooth out the speed. screenshot called AE project position curve shows this.
    of course the problem is that if i do 'rove across time' with keyframe interpolation on the position keyframes, then i have to change the placement of the scale keyframes in order for the movement to still work as desired.
    i have turned on motion blur on the layer.
    i have then pre-composed the layer and in a new composition, added Timewarp effect (for the motion blur only). as you can (screenshot called AE project composition with effects) i set the shutter angle really high to get lots of blur to try to mask the choppiness.
    i pre-composed the layer so that i could turn on the little rasterize button. to be honest, i don't know what this does or why it's not available on a layer before it's pre-composed, but it was recommended to me to have it turned on.
    when i RAM preview that at about 25% display size, it is ALMOST perfectly smooth -- minus a couple small jitters that are practically negligible.
    when i RAM preview at 100% it is very choppy.
    i have tried rendering a few times with different settings. i have tried a few with Photo-JPEG codec at about 75% quality, both at full size as well as half (i'd like to keep it to 1440x900 export if possible)
    i have also tried rendering to Apple ProRes 422, also 75% quality, tried both full size and half.
    when i watch any of these rendered results in Quicktime 7, they are jittery. some more than others, but nothing has been satisfactorily smooth...
    hope this helps understand my issue a bit better. if you have any advice about how i can make this the smoothest possible, i'd appreciate it.
    thanks

  • Mountain Lion choppy animations

    Hey,
    MacBook 13 inch mid-2012 here.
    When i was on Lion 10.7.4 all animations were great snappy and awesome.
    When i updated to 10.8 Mission control, app folder open, calendars app are 10 fps down - still usable but choppier. Although switching between spaces, scrolling in Safari and many other are great like 60+ fps.
    After i wake-up i have really smooth animations, smoother than Lion for something like 5 seconds. Then after - again the same chippy animations.
    Anyone experiencing something like this? Suggestions?
    Probably going to be fixed in future updates...

    You are not alone, Martin. I'm having exactly the same problem - really lovely performance in Lion on my 2 month old i7 MacBook Air 13", and annoying choppiness on Mountain Lion.
    A quick google around shows that others are having trouble with ML and our hardware, too.
    I suspect this is a graphics driver issue and I really hope they sort it out soon!
    NB No such issues on my mid 2011 iMac i5. I upgraded that first, and completely happy with the performance I went ahead with the Air. Big disappointment.

  • Choppy animated dynamic wallpaper on lockscreen.

    Hi all,
    I'm currently using iPhone 5S, but when i had set my lockscreen to the new dynamic wallpaper, the animation seems to be choppy. Had tried to update and restore to iOS 7.0.1, but the issue seems to be persisting. Any solution for this? Or is the iPhone faulty?

    I have same problem on my iphone 5s ios 8.1

  • I may have a solution for choppy video playback for iTunes Windows users

    My setup:
    - Intel NUC (i5)
    - 8gb memory
    - Intel 5000 Graphics with 1GB memory (share of system memeory)
    - iTunes 12
    - iTunes library on NAS via GigaLan
    Had problems with very choppy and freezing HD video playback in iTunes and tried everything... Every other player works fine.
    1. downgrade audio playback
    2. played with Quicktime settings
    However, I think I might have a workaround. You need to do the following,
    1. Install Quicktime 7
    2. Install iTunes
    3. Download ffdshow (Sep 2014 version) and install the codecs: pretty much leaving all do default
    4. Set audio quality in Sound and Quicktime options in control panel, and iTunes to 16bit 48k
    5. In advanced options of Quicktime in control panel, deselect "Direct 3D" & "Enable directdraw on seondary display", ONLY tick "enable directdraw accerleration"
    Well, at least this works for me for now.
    HOWEVER!!!
    @Apple! You need to address this issue once for all, I can't believe there is no solution. As a paying customer who buy quite a few of your movies in iTunes, I expect to have a harssell free experience. Consumers should NOT have to go through all these troubles trying to fix a product you have released and making billions out of.
    Reason why I switched from Android to Apple for my phones and tablets is becasue of the seamless user experience, regretfully I have to admit, this advantage is quickly going away. The amount of glitches in your recent ios updates and itunes are simply unacceptable.

    Downloading videos on 7.0.2 hasn't worked as well as everyone had hoped. I still can't get mine to work, but i do know a few people who haven't had trouble with the newer itunes.

  • Choppy animation

    I have imported (embedded) a MOV file into my scene but when
    the animation is played back in flash it's choppy. I have tried
    different settings (low res...) but it's still no good. Any ideas?
    Thanks

    Flash recommends not embedding video files for this reason -
    anything over 20 seconds isn't recommended at all, but in general
    it's a bad idea because of playback issues.
    The other options work better if it is in flv format, and I
    believe you can export as an flv righ from flash, or if you're
    working on a mac, use iMovie to export the flv format, and then
    import back into flash as a linked file...
    If you know it's not being posted to a flash server, choose
    "progressive download" as the link option (linking to an external
    movie file.) In the download wizard tool that allows importing the
    files this way, there are links throughout which take you to the
    tech notes which walk you through the process.
    As long as your movie is linked in the same directory folder
    as the final .swf, it should play well from your hard drive as a
    test, but you may have trouble playing back from your hosted web
    server - it will need to be checked to see if it is configured to
    accept .flv format movies...
    If you have trouble with that - these are the tech notes
    someone provided me
    A couple of things to check:
    If you are getting the can't find file issue while in the
    Flash development environment, I found that placing the file on the
    server, and then trying to view the file separately through its own
    URL in Internet Explorer on the machine you're developing on for
    some reason allows the Flash IDE to find the file. I guess it must
    be in some interdependent with Internet Explorer..
    If you can't access the file separately from its own URL then
    its possible your web server hasn't had the MIME type for .FLV set
    up, and doesnt allow it to be served. You can check this by
    reviewing the MIME settings:
    http://blogs.ittoolbox.com/c/engineering/archives/adding-flv-mime-type-in-iis-4198
    http://livedocs.macromedia.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/common/html/wwhelp.htm ?context=Flash_MX_2004&file=00000868.html
    Hope that helps,
    Jesse

  • TS1559 still no solution for greyed out wifi and bluetooth - what to do? been messing around with it for weeks and now discover I'm just outside of warranty period? WHAT?

    I am in such a predicament - phone not been quite right since the 6.1 update and I was tolerating the inconvenience of switching off and on etc etc for the past couple of months and now the wifi and bluetooth are totally greyed out all the time - did every restore possible including back to factory settings - still no luck - please don't tell me that trying all the solutions over the past 2 months that temporarily worked for a few days at a time will now mean I have timed myself out of the 1 year warranty? arghhhhh (I can't believe that such an issue will create the response 'oh well, your problem - best just buy another one' ???)
    I can't just drop everything and drive to the apple store and wait for hours every time there's a 'glitch' otherwise I may as well move nextdoor to the mall. They tell you to try and solve it yourself first - which I did - and now it's not responding to anything I try, will I be told - 'too late, out of warranty'???
    I see theres an update for the iphone 5 that fixes wifi bugs - what about us 4s owners? even my 3 year old 3gs is still working on wifi (haven't dared to update it!) so don't start telling me to expect that the iphone will only last 13 months - NOT AT $600 a piece
    This is madness and driving me crazy
    Please has anyone had any luck fixing this problem???

    well, you know how it is - glitches that usually resolve with a hard reset etc
    then a restore. then a factory restore....then ..... nothing fixes so I try the next step with apple online - fill out my serial number and find it is a couple of weeks out of date - and then with the holidays who has time to get to the apple store? this is my second 4s handset as it is - first one the glass cracked from L to R without any impact/damage etc - they changed it out automatically because it's a 'known fault' apparently - so technically, this handset is only 6 months old - but warranty is from original purchase date -
    never imagined it would turn out to be a warranty issue with the phone - and hey maybe when I get a chance to go to the apple store they'll be sympathetic, but I won't be able to get there till at least Jan 4th as it is. On the other hand, another iOS update might resolve the issue - but how long till that release? at the moment I'm having to use my old 3gs for wifi and 4s for phone!!!

  • Premiere Pro CC crashes on startup! (Still no solution!)

    Whenever I open Premiere Pro CC Trial, it says "Premiere Pro CC has stopped working"
    I looked around the internet and found a solution that was working for many people, to download the latest AMD drive. So I went and downloaded the AMD 14.4 drive, and the program still crashes on startup.
    I've also tried running as administrator, logging out and in, and making the program compatible with Windows 7, in the properties, the same problem occurs each time.
    How do I fix this problem?
    What version of Premiere Pro? Include the minor version number (e.g., Premiere Pro CS5.5 with the 5.5.2 update).
    I don't know because I can't open it, I downloaded it on May 22nd, and it says up to date in CC.
    Have you installed the recent updates? (If not, you should. They fix a lot of problems.)
    In CC it says up to date.
    What operating system? This should include specific minor version numbers, like "Mac OSX v10.6.8"---not just "Mac".
    Windows 7 Home Premium 64-bit
    What kind(s) of source footage? When telling about your source footage, tell us about the codecs, not just the container types. For example, "H.264 in a .mov container", not just "QuickTime".
    The footage I am attempting to edit is a .avi clip from Fraps, but that doesn't matter.
    If you are getting error message(s), what is the full text of the error message(s)?
    I'm not getting any messages from Adobe, but from Windows; "Adobe Premiere Pro CC has stopped working" and "Windows is checking for a solution to the problem"
    What were you doing when the problem occurred?
    Nothing at all, no windows open.
    Has this ever worked before?
    I have not had it before.
    What other software are you running?
    None.
    Do you have any third-party effects or codecs installed?
    No
    Tell us about your computer hardware. Be especially certain to tell us about third-party I/O hardware (e.g., AJA, Matrox, Blackmagic, MOTU).
    Model: Alienware M14XR2Processor: Intel(R) Core (TM) i7-3630QM CPU@ 2.40 GHz 2.40 GHz, Memory/RAM: 8 GB, 7.88 GB usableSystem: 64-bit operating system, Windows 7 Home Premium
    Are you using Mercury Playback Engine GPU Acceleration?
    Probably not.
    Does the problem only happen with your final output, with previews, or both?
    I can't open the program.

    http://helpx.adobe.com/photoshop/kb/cc-applications-crash-immediately-launch.html

Maybe you are looking for

  • Reinstall itunes after system recovery

    computer crashed,did a non-destructive disk recovery;itunes was affected.Tried reinstalling the software,both from the disk and under the add/remove programs, and all I get is "this action is valid only for programs that are currently installed." Ipo

  • How to check weather a material created is active or not

    Dear Friends 1    How to check weather a material created is active or not. 2  MIGO standard document has a check button, can we have similar check button in other documents like Purchase requisition. 3   In case of material valuation is Standard (Pr

  • How to determine the value of  -D__SUNPRO_CC?

    Could any body tell me how to determine the value of -D__SUNPRO_CC? Iam now using Sun Studio 9. Thanks in advance.

  • Connecting iPod to two computers - not setup for Apple account ...

    A co-worker bought an iPod classic and downloaded and installed iTunes on his desktop computer at home. He did NOT create an iTunes account at the time. He just imported music off his hard drive and CDs and then sync'd his iPod. After that he started

  • Oracle support help

    Hi, I have just got the login details of Oracle Support. I have some Q's regarding client site and want to post on metalink to seek Oracle experts help How I can do that? Thanks