10.8.1 update and display problems

Hey, I've just updated to 10.8.1 and I'm experiencing strange display glitches... For example, when switching desktop, it doesn't slide smoothly, but with small jumps. Also, when launching Launch Pad, transition isn't smooth and on it's end, the desktop windows "flashes" through it. Anybody experienced the same?

You can try this:
Auto-hide the Dock (System preferences>Dock)
Change the Dock-folders to display as folders, not stacks.

Similar Messages

  • My performance is very slow when I run graphs. How do I increase the speed at which I can do other things while the data is being updated and displayed on the graphs?

    I am doing an an aquisition and displaying the data on graphs. When I run the program it is slow. I think because I have the number of scans to read associated with my scan rate. It takes the number of seconds I want to display on the chart times the scan rate and feeds that into the number of samples to read at a time from the AI read. The problem is that it stalls until the data points are aquired and displayed so I cannot click or change values on the front panel until the updates occur on the graph. What can I do to be able to help this?

    On Fri, 15 Aug 2003 11:55:03 -0500 (CDT), HAL wrote:
    >My performance is very slow when I run graphs. How do I increase the
    >speed at which I can do other things while the data is being updated
    >and displayed on the graphs?
    >
    >I am doing an an aquisition and displaying the data on graphs. When I
    >run the program it is slow. I think because I have the number of
    >scans to read associated with my scan rate. It takes the number of
    >seconds I want to display on the chart times the scan rate and feeds
    >that into the number of samples to read at a time from the AI read.
    >The problem is that it stalls until the data points are aquired and
    >displayed so I cannot click or change values on the front panel until
    >the updates occur on the graph. What can I do to be a
    ble to help
    >this?
    It may also be your graphics card. LabVIEW can max the CPU and you
    screen may not be refreshing very fast.
    --Ray
    "There are very few problems that cannot be solved by
    orders ending with 'or die.' " -Alistair J.R Young

  • 2x iMac G5: Both Logic Board and Display Problems, Warrenty?

    Hello,
    Thank you for looking at this topic.
    I am Jeroen from The Netherlands and proud owner of several Mac Mini's, iMac's and Macbook's. I have 2times the iMac G5, a beautiful machine, but both not working since 2 months.
    I have two times the iMac G5 with iSight, both have logic board and display problems.
    The first iMac doenst start at all, black screen, i hear the chime, but nothing happening. After a minute i see one horizantal white stripe but nothing happens.
    The second iMac has weird horizantal stripes also, but the computer starts. It gives a finder and questionmark icon. After a while the fans go crazy.
    Both these symptons are widely known on the internet. I would like to get this fixed, but prices are crazy. And because this is a common issue I would expect to get this fixed for no costs. I have contacted several Apple resellers but they shown me high prices and bad services. On these forums I've saw people in the USA who get this fixed free of charge.
    Does anyone has any advice for me? I'll call apple USA this morning.
    Thankyou for ur time.

    Welcome to Apple Discussions.
    I know of no repair extension authorization which provides for the repair of either computer you describe beyond its original 12 month period of coverage. If either machine is covered by a warranty extension program provided by AppleCare, then the parts, labor or both required to replace the defective components may be offered at no charge to you. Final determination of eligibility is made at the part level by authorized Apple service providers or dealers and by the specific serial number of the machine submitted for service.
    Absent a warranty extension, however, it is quite likely that you will have to pay for the repairs is you elect to have them performed.

  • Latest firmware update and more problems with 30" external displays?

    Hello,
    New macbook pro user since a few weeks, so first post here.
    I'm aware of various issues with the displayport to dual-dvi adapter, especially with 30" 2560x1600 monitors. All threads I've found on are 1-3 years old though.
    I got my 17" macbook pro a few weeks ago and I've had very few problems running my 30" dell 3008wfp as external screen. I had issues at times getting it to work after boot up, with blackout and various errors (problems I've read about in older threads), but once stable it would work without issues for days.
    Yesterday the macbook found and installed a new firmware update, and wow, all **** broke lose. The external screen won't run at 2650x1600 for more than a minute before blacking out or suffering major graphical errors. Ironically one of the key points in the firmware update is better support for external monitors...
    It will run nice and stable mirrored at 1920x1200, but not at 2650x1600.
    Is anyone else in a similar situation after the latest update?

    Hello,
    New macbook pro user since a few weeks, so first post here.
    I'm aware of various issues with the displayport to dual-dvi adapter, especially with 30" 2560x1600 monitors. All threads I've found on are 1-3 years old though.
    I got my 17" macbook pro a few weeks ago and I've had very few problems running my 30" dell 3008wfp as external screen. I had issues at times getting it to work after boot up, with blackout and various errors (problems I've read about in older threads), but once stable it would work without issues for days.
    Yesterday the macbook found and installed a new firmware update, and wow, all **** broke lose. The external screen won't run at 2650x1600 for more than a minute before blacking out or suffering major graphical errors. Ironically one of the key points in the firmware update is better support for external monitors...
    It will run nice and stable mirrored at 1920x1200, but not at 2650x1600.
    Is anyone else in a similar situation after the latest update?

  • Error in updating and displaying ouput in JSP

    Hi im doing project using jsp files.In part of my project there is vote page and vote result page.
    my vote_page.jsp
    <%@ page import="java.util.*" %>
    <%@ page import="java.sql.*" %>
    <%@ page import="java.text.*" %>
    <%@ page import="java.sql.Date" %>
    <%@ page language = "java" %>
    <%! int ctr=0;%>
    <%! String[] songs=new String[10];%>
    <%
    try{
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection connect;
    connect=DriverManager.getConnection("jdbc:odbc:RegisterDataSource");
    Statement state;
    state = connect.createStatement();
    String strQuery1 = "SELECT title FROM ItemEJBTable";
    String str;
    ResultSet result1 = state.executeQuery(strQuery1);
    while(result1.next())
    songs[ctr]=result1.getString("title");
    ctr++;
    connect.close();
    catch(Exception e)
    %>
    <form method="GET" action="http://localhost:8000/Music/Vote_result_page.jsp">
    <p align="center">
    <font><b><u>Vote for your favorite song</u></b></font></p>
    <font><b>       Songs</b></font>
    <font> </font> 
    <select size="1" name="Song1">
    <%
    for(ctr=0;ctr<songs.length;ctr++){
    %>
    <option>
    <% out.println(songs[ctr]);}%>
    </option>
    </select></td>
    </tr>
    </table>
    <input type="submit" value="Vote" name="submit">and my vote_result_page.jsp
    <%@ page import="java.util.*" %>
    <%@ page import="java.sql.*" %>
    <%@ page import="java.text.*" %>
    <%@ page language = "java" %>
    <%! int voteNum=0; %>
    <%! String selSong=new String();
    %>
    <% selSong=request.getParameter("Song1");
    out.println(selSong);
    String selSong1 = selSong.trim().toString();
    try{
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection connect;
    connect=DriverManager.getConnection("jdbc:odbc:RegisterDataSource");
    Statement state,state2;
    ResultSet result1;
    state = connect.createStatement();
    state2 = connect.createStatement();
    String strQuery1 = "update Vote_Info set Number_votes=Number_votes+1
    where itemCode=(select itemCode from ItemEJBTable where title='"+selSong+"')";
    state.executeUpdate(strQuery1);
    String strQuery2="select Number_votes from Vote_Info where itemCode =
    (select itemCode from ItemEJBTable where title='"+selSong1+"')";
    result1=state2.executeQuery(strQuery2);
    while(result1.next())
    voteNum=result1.getInt("NumberVotes");
    out.println(selSong+" got "+voteNum+" votes");
    connect.close();
    voteNum=voteNum+1;
    catch(Exception e)
    %>
    <td width="82%" valign="top">
    <!--Display the number of people who have voted for the song-->
    <p align="left"><font face="Arial" size="3" color="#800000">
    <b><u>You voted for the song:</u></b></font>
    <p align="left"><font face="Arial" size="3" color="#800000">
    <b><%=request.getParameter("Song1")%>
    </b></font></p>
    <p align="left"><%= voteNum %> <font face="Arial" size="3" color="#800000">
    people have voted for this song so far.</font></p>
    <input type="submit" value="OK" name="submit">When i select song_no_1 and click on vote button on vote_page.jsp it directs to vote result page and displays that
    1 person has voted for this song and this vote is not updating on table. When i go again to vote page and vote on song_no_2 it says that "2 person have voted this song" even if it is not voted before.
    I dont no where the problem occurs pls help me for this.

    sorry for double posting because i didnt got reply from first one so i thought that nobody have looked on that topic that's why i done this.

  • Standby/Sleep System and Display Problems

    Hi all,
    Installed 4 times WIndows 7 Ultimate x64 besides Max OSX Snow Leopard
    And have de folowing problems
    - Manual sleep works
    - Manual hibernation works
    - Manual start screensaver works
    - Automatic after a couple of miniutes: Screensaver will not start
    - Automatic after a couple of miniutes: Standby modus screen will not start
    - Automatic after a couple of miniutes: System will not go to sleep modus
    - Automatic after a couple of miniutes: System will not go to hibernate modus

    I did install: new intel chipset drivers, but the problem = still there
    I tried to install de ATI AMD drivers, but this will not update the display driver version.
    Using de apple keyboard and the magic mouse
    Message was edited by: cateyenl

  • Please Help! 10.6.8 Update and subsequent problems

    On Friday, 2/10/2012, the Software Update popped up and informed me that new updates were ready to be installed on my MacBook Pro.
    I clicked the update button and the updater installed the following updates:
    iTunes v10.5.3
    Security Update 2012-001 v1.1
    MacBook Pro Video Update v1.0
    Remote Desktop Client Update v3.5.2
    Keynote 5.1.1 v5.1.1
    Safari v5.1.2
    Java for Mac OS X 10.6 Update 6 v6.0
    Soon after installation Safari started crashing whenever I opened new tabs. I reset Safari and that problem went away.
    I also run a Virtual Machine (Windows Vista imported from a Sony Vaio). The virtual machine has never had a problem and I used it on Thursday before the update and it worked fine. However, after the updates, I can no longer use the virtual machine. It has been corrupted. I get a message that says "Unable to Access Hard Drive 1: input/output error."
    Then my whole Mac started running slow, especially Safari. In Safari, pages are slow to load and I get the spinning color wheel (or "beach ball," as I have heard it referred to) when I'm on any web page. Pages take long to load. After they load, I still get the spinning color wheel consistently.
    Other programs are somewhat slower to load, as well, and when switching between open programs, there are delays and even more spinning color wheels and beach balls.
    My computer has never had a problem until after I installed those updates.
    I have repaired permissions and I have also re-donloaded the combo straight from the Apple website, but that did not work.
    Is anyone else having this problem? Or has anyone else had this problem? What to do?
    Thanks.
    And, uhm, no- I did not have Time Machine set up, unfortunately.

    Grant, thanks for the reply.
    I have NOT been considering a new hard drive. My MacBook Pro is not even two years old, yet (I bought it in May 2010). So, the thought of having to replace my hard drive within 2 years has not even entered my mind and (as I stated) I only started having these problems within the past 2 weeks after having installed the latest updates via Software Update.
    Really, if my Hard Drive needs to be replaced after less than 2 years of light use, then I will just chalk this up as a lesson learned and just not buy another Apple product and would probably just buy a Windows-based laptop rather than replace the HD in my MBP.
    I am working on transferring my files (the ones that will still open and/or copy) to an external hard drive and doing a clean install of my OS X. I also am trying to figure out if I can somehow manage to save my pics that will not copy to the external hard drive but are saved on my iPad before I do so.
    I'm not a computer or Mac genius by any stretch of the imagination, but I do appreciate your reply and advice. Unfortunately, I don't have any idea what it means to re-write a "wvwey block with a known-good pattern." Is that something I have to do manually? You stated that the option is in Disk Utility. Is "write zeroes" an option that you can select or is something you have to input manually? Can you break it down in simple terms for me or give me some step-by-step instructions or a link?
    I apologize for my ignorance, but (again) I do appreciate your replay and advice as well as that of HackInt0sh.
    Thanks.

  • Airport Update and New Problems

    Every since I exposed my rock stable mac to the last airport update and system update, I have had some connectivity problems with my airport. I cannot get Back To My Mac to work. I can't print off of my USB connected to the airport. I went into Airport set up and the airport does not recognize the printer. I tried to get on my desktop mac in the other room, and can't log on. I can't see my wife's computer sitting across from me. Should I be looking at a different problem, or is this a up-date conundrum?

    I'm still experiencing these problems with the 7.4.2 firmware upgrade. I think there may be a problem with the computer's Airport card, not with the base station. Perhaps the 7.4.2 firmware has nothing to do with it. Maybe it's a problem with an OS X update. Sometimes, inexplicably the internet will go offline for a few minutes. During this time not only my network (coming WiFi from my Airport Extreme Base Station) but also all of my neighbor's networks suddenly disappear. A few minutes later everything returns to normal. Also during this time my ISP remains online; there is no problem with the ISP. The MacBook is the only device that seems to "think" that all internet networks are down. Another big tip off is during this time the Airport utility fails to recognize my base station at all. It doesn't even see it... period. If this were an ISP problem the Base Station would still appear as visible to the AirPort Utility.

  • Timeline - Cannot Move Tracks and Display Problem

    I've created about a ten-minute timeline that I'd really prefer not to toss out because a lot of work went into creating parts of it and getting the timing right with the music, etc. When I first open the project in Premiere Elements, everything seems okay - my timeline plays with all transitions and I can scroll around in the timeline. However, I appear to have done something where whenever I click and drag to try to move a track, the timeline goes insane. I get a circle with a line through it for a cursor and a blank tooltip window, whether I try to drag the track horizontally or vertically. After that, while the timeline will still play, the timeline itself gets all wonky in its display, almost as if the video isn't refreshing on it. (It's kind of like the timeline has crashed.) I attached a screenshot of what it looks like. Whenever I move my cursor to the edge of the timeline, the timeline scrolls in that direction.
    I'm running Premiere Elements 7 Educational Version on  a Core 2 Duo laptop with 3GB RAM, an Intel 965 graphics chip (latest Intel drivers are installed), and Vista Business 32-bit. The clips are from a standard DV cam (not HD), and there are some PNG format stills and MP3 sounds mixed in there as well. There are three active A/V tracks. I think that's all the relevant information, but ask me if you need more.
    Can anyone tell me what I've done and/or how to fix this?

    Good morning every one!
    The bad news: As expected the problem does still occur. The good news: I was able to track it down to one clip in the timeline.
    To save others time, I will described what I have evaluated quite detailed in the following paragraphs...
    As it seemed to me that deactivating the Windows indexing service made the usage of PrE more stable I thought that maybe file locks would cause the trouble. So I verified this by opening the project in PrE, writing and executing a small Java application that puts an exclusive file lock on one of the files from the project and tried to move the according clip in the timeline. It worked without any problems and the known symptoms did not occur. So we can put aside the file locks.
    Afterwards I tried to reproduce the problem by playing around with the scene that caused problems last week. I tried by moving around the video clips and the problem did not occur. Then I remembered my statement I have made earlier, that the problems seemed to occur as I started to work with titles and music clips -- and bingo: I have three music clips in my "soundtrack" track and one of them seems to cause the whole trouble. After I have clicked on this specific music clip, the problem occurs and it is no longer possible to move anything in the timeline and the strange behaviour regarding the automatic scrolling when the cursor is at the left/right etch is activated.
    It was easily reproducable: Restart PrE, open my project, move a video clip to verify that moving clips works, click on the specific music clip and the problem occurs. I have tried this several times and each time the problem occured. When I clicked on one of my other two music clips everything was fine -- same for the video clips I tried. So in my case it seems to be this single clip.
    OK, what's specific regarding this clip: All my music files are placed on a share on my Windows home server (in contrast to the video footage which is located on the local HD). So I moved the "dangerous" music file to the local HD, changed the path to the file with a text editor directly in the PrE project file (which is a simple XML file) and started up PrE again. I verified that PrE takes the file from the local HD (server was down), but the problem did still occur. So it is not a network issue.
    The next specific thing is, that this music file is the only file in my project which is a .wma-file -- the others are .mp3-files. So I did three things:
    At first I downloaded the project file provided by SQFreak2 in this thread and checked whether he is also using .wma-files. The result: He does not use them.
    As the second thing I again changed my project file in the text editor: I changed the path of the music clip to some other .mp3-file. Afterwards I opened up PrE with that project file, used the playback to verify that the other music file is referenced by the clip instead of the original wma-file and then tried to move the clip -- again the symptoms occured.
    As the last step I created a new project, added the "problematic" wma-file, placed it on the "soundtrack" track and afterwards tried to move it. The result: No problems at all.
    So it neither seems to be a generic problem with wma-files nor does it seem to be a file-specific problem at all.
    Lets summarize the things from above: File locks do not cause any trouble. In my project a single audio clip seems to cause the problem. The problem seems to be caused by the clip and not the file referenced by the clip (no matter whether local or server based, wma or mp3, the problem occurs in every case).
    What I have learned? Well, I am not sure. But in the meanwhile I am quite sure, that it hasn't to do anything with hardware and drivers, but that we are dealing with a bug in PrE that occurs in specific project cirumstances.
    This morning I have got some additional ideas I would like to try to track the problem down (e.g. the problematic clip has a transition for a fade out in the end [when I did this I didn't knew, that a fade out could be easily achieved in the clip's properties] -- I will try to remove this one and look what will happen).
    P.S.: In one of my earlier posts I stated the assumption that the problem occurs as soon as I move the mouse cursor over the vertical scroll bar of the timeline -- but this is definitely not the case.

  • Flex 4.5, destructionPolicy="never" and display problem

    Hello,
    in my firstView I have destructionPolicy="never", when in my secondView I click on the back hardware button, return in the firstView, if the orientation phone change, I have a display problem : the background appear and the spark component scroller doesn't work on my android phone.
    Thanks.

    Known bug. https://bugs.adobe.com/jira/browse/SDK-30126

  • Update and installation problems

    I am having issues with Creative Cloud updates and installations.
    None of my Apps will update. I am prompted to update, I click the update button, Cloud says "updating software" but all attempts stop at 0%.
    Similar issues Installing Apps. Installations start but all stop at 90%. No error messages at all.
    This is extremely frustrating and all my Apps are in need of updates to fix minor bugs which are effecting my workflow.
    Can you help?

    We can't know. You have not provided any exact system info or other details like the install/ update logs. You can always run the cleaner and start from scratch.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Troubleshoot Creative Cloud download and install issues
    Mylenium

  • The update and other problems PLEASE HELP!!!

    The ovi store on my phone asked me to download the newer version which I did, is there an update for ovistore on the computer because I haven't heard about it if there is one and it may solve the problems I have been having with it:
    1. I don't receive the messages when trying to get an app
    2. It wont let me down load apps when I connect my phone to the computer
    (also on the nokia website it told me to click the download and install button to get an app when plugged into the computer but I can't find it..Any ideas where it is???)
    please help i've had this problem since I first set up my account and its really bugging me now!!!!!!

    (Apologies for barging in Steve.)
    These ones are typically caused by underlying problems on the PC that also often cause Windows Updates to fail to install. If we can fix the Windows Update trouble, we can usually get the iTunes trouble cleaned up en passant.
    Go into your Windows update and try to check for new updates. If updates install, stock up on the ones you're behind on, restarting the PC if requested to do so. After the restart, try installing iTunes again. Does it go through this time for you?
    If windows updates fail to install, go into your Update History and doubleclick the failures. What alphanumeric codes appear for you? Are they also 80071A91, or some other number? (If they're another number, what number are you getting?)

  • Latest update and display changes

    after the latest update my display changed to higher resolution and when I go inot the preference pane I only show two available resolutions.
    What can I do to fix this
    Thank you for any help

    I tried adjusting the value of layout.css.devPixelsPerPx but that did not help. The only thing that temporarily fixed my display issues was to close Firefox- at that point the screen blacked out and reappeared in full view. As soon as I open Firefox the screen blacks out and reappears showing only a portion of my desktop and all the icons not visible are no longer clickable because the mouse cursor can't reach them.

  • IOS 7 Update and Configurator Problems

    Since the iOS 7 update, we have been unable to 'Check In' devices with Configurator, and refreshing devices has been difficult.  We have iPad 2s and Configurator 1.3.1 running on Mac OS 10.7.5.  Sometimes the message is, "Could not create a backup", and sometimes the message is, "Unable to fetch a list of installed apps". Is anyone else having the same problems? 
    We have updated all software - OS, Configurator, iTunes, and all iOS Apps.  We have 4 paid apps (iMovie, Pages, Keynote and Configurator), and no free apps for the VPP account on each iPad.  Each iPad is named and assigned to one student.  Students have their own iTunes account to add free apps as needed.  The only way I have found that this works without error is to delete the student name from "Assign", but then I can't transfer any of their information when a device has problems. I have tried this with devices that are not having any problems to make sure it is not related to other problems.  These problems did not exist until the iOS 7 update.  Hopefully a Configurator update will be on the way soon?

    andrewgodin wrote:
    Here is what worked for me in dealing with this hot mess.
    Using iTunes, I went to each individual iPad and restored it to factory settings.  Takes about 5 minutes per iPad. 
    When it was done, I didn't set it up as a new iPad, I simply clicked the "eject" button so it no longer appeared in my list, which prevented me from restoring the same iPad twice and wasting time.
    Once all of them were done, which took an entire day, I opened up the updated version of configurator.  All of the iPads restored and installed the apps that I need and the problem was solved.
    Did this about five minutes ago.  Time will tell if it sticks, but for now, they are fixed.
    You could probably try to downgrade your iOS7 cart back to iOS6, that's what I ended up doing.

  • Droid Eris 2.1 update and facebook problems

    I just downloaded the Eris 2.1 update and the new facebook update today.  I have had nothing but trouble since then.  I went to the Verizon store for help and got nowhere.  The facebook widget does not work.  The facebook ap works partway.  I cannot retrieve the newsfeed or profile from the ap.  HELP!

    This may have already been covered... haven't read all the posts... but I have lost the following due to the 2.1 update... 1. SPEED DIALING... 2. WEATHER AND LOCATION ON THE HTC Sense UI... 3. Voice Dialer keeps arbitrarily starting and locking up. 4. When I pull up my APP KILLER, it shows random apps are running... with as many as 8 different apps (many of which I was not nor have not used) are active.  It's no wonder battery is dying so rapidly.

Maybe you are looking for