After the last up date for Safari (Mac OS X 10.8.5 in a iMac mid 2011 21.5 inch 2.8GHz Intel Core i7) The window don't open or they are there  and only in an outline, kind of like they're behind the screen. I have also done a system update and then a syst

After the last up date for Safari (Mac OS X 10.8.5 in a iMac mid 2011 21.5 inch 2.8GHz Intel Core i7)
The window don't open or they are there  and only in an outline, kind of like they're behind the screen.
I have also done a system update and then a system reinstall.
What now? incident nr, 526941222.

After the last up date for Safari (Mac OS X 10.8.5 in a iMac mid 2011 21.5 inch 2.8GHz Intel Core i7)
The window don't open or they are there  and only in an outline, kind of like they're behind the screen.
I have also done a system update and then a system reinstall.
What now? incident nr, 526941222.

Similar Messages

  • What can I do about the following on my mid 2011 21.5-inch 2.5Ghz Intel Core i5 OS X 10.8.1 (12B19) iMac?

    "Time machine couldn't complete the backup to xxxx's Time Capsule".  The backup Disk image"/volumes/Data/XXX's Mac.sparsebundle is already in use. 
    Please see the Screen Shot Below.  I have just added the Time Capsule for use with my time machine.  It has worked great for 2 days.  Now this.  Does anyone have any ideas how to get the time machine to back up to the Time Capsule?

    Please carefully read Pondini's Time Machine Troubleshooting guide.

  • Storing the last modified date for files in a HashMap

    This method gets a list of all the .java files in the source subdirectory, gets the last modified date for them and stores the file name and last modified date in a HashMap.
    import java.util.HashMap;
    import java.io.FilenameFilter;
    import java.io.File;
    import java.util.ArrayList;
    public class myClass
         public static void main(String[] args)
              HashMap result = getLastModified();
         static FilenameFilter javaFilter = new FilenameFilter()
            public boolean accept(File dir, String name)
                return name.endsWith(".java");
         public HashMap getLastModified()
              HashMap lastModified = new HashMap();
              ArrayList javaFiles = new ArrayList();
              File sourceDir = new File(".\\Source");
              File currentFile;
              long lLastModified;
              //get a list of all the .java files in the source directory
              javaFiles=listFiles(javaFilter);
              //for all .java files get and store the last modified date
              for(int i=0; i<javaFiles.size(); i++)
                   currentFile=(File)javaFiles.get(i);
                   lLastModified=currentFile.lastModified();
                   lastModified.put(currentFile, lLastModified);
              return lastModified;
    }The problems I am getting are:
    >
    The method listFiles(FilenameFilter) is undefined for the type myClass
    and
    >
    The method put(Object, Object) in the type HashMap is not applicable for the arguments (File, long)
    can anyone help? What's the best way to go aobut this?

    Thanks for the replies abenstex I modified it so that javaFiles is now a File[] and made the change you suggested but I still have the second problem, here's the code so far:
    import java.util.HashMap;
    import java.io.FilenameFilter;
    import java.io.File;
    import java.util.ArrayList;
    public class myClass
         public static void main(String[] args)
              HashMap result = getLastModified();
         static FilenameFilter javaFilter = new FilenameFilter()
            public boolean accept(File dir, String name)
                return name.endsWith(".java");
         public HashMap getLastModified()
              HashMap lastModified = new HashMap();
              File[] javaFiles = {};
              File sourceDir = new File(".\\Source");
              File currentFile;
              long lLastModified;
              //get a list of all the .java files in the source directory
              javaFiles=sourceDir.listFiles(javaFilter);
              //for all .java files get and store the last modified date
              for(int i=0; i<javaFiles.length; i++)
                   currentFile=(File)javaFiles;
                   lLastModified=currentFile.lastModified();
                   lastModified.put(currentFile, lLastModified);
              return lastModified;

  • Table to know the last loaded date for a ODS  and InfoObject?

    Table to know the last loaded date  and time for a ODS  and InfoObject?

    Hi Muruganand,
        The only way is through code ... there is no direct and simple method ... what you need to do is find hte highest Timestamp value for DP_NR = 000001. Then get the request field (RNR) ... this is the last request. Since you have to do it for 300 cubes ... I suggest you do some coding .. I can guide you through if you need assistance.
    Best regards,
    Kazmi

  • Need FM to get the last consumption date and value

    Hello Friends,
       i am developing a report for non moving material , i have got the relevant fields from MSEG,MKPF, MCHB, MCH1,,, but i need the last consumption date for that non moving material batch and value (total amount ) of that batch...
    so i need a Function Modules, to get this values .
    Please help me out
    Regards
    Mukesh

    You have to join MSEG and MKPF ( where MKPF has the posting date ) , ( day,month,year ) . You can calculate the month.moreover, also see S031,S032,S033
    else.
    check it at Mseg-lgort, and movement types for the given matnr.
    from there u can find the consumtion according to movement types .
    for particular period carry mblnr from mkpf and check the movement types which r equal to this mblnr and matnr in mseg.
    so u get the all movement types in that period for particular matnr.
    consumtion = issues - receipt.
    hope this helps u

  • Last Entry Date for Each Quarter

    Hi,
    I want to find out the last entry date for each quarter. The query I am using is this:
    SELECT 
    Country.Name as Country,
    CONVERT(DATE,MAX([CreationDate])) as LastDateOfClipEntry,
    DATEPART(Year,([CreationDate])) as Year,
    DATEPART(Quarter,([CreationDate])) as Quarter
    FROM 
    [dbo].[Clip]
    JOIN Office on Office.Code = Clip.Office
    JOIN Country on Country.Code = Office.Country
    WHERE YEAR(CreationDate) IN (@YEAR)
    GROUP BY Country.Name,DATEPART(Year,([CreationDate])) ,DATEPART(Quarter,([CreationDate]))
    ORDER BY Country.Name
    Now based on the column group I added in my report the result is coming correct but not properly formatted as I want.
    Below is the snapshot how its coming now:
    I don't want the extra blanks coming for each occurrence. There should be only one line for Australia and in the single line it should show the last entry date for that quarter. How can I achieve that ? Below is the snapshot showing current config:
    Thanks a lot in advance. Any help would be appreciated.
    Vivek Kamath

    Hi Vik2907,
    According to your description, you have a matrix which shows you those unexpected cells. Right?
    In this scenario, the reason caused this problem is the group setting. Mostly, you set the row group on a wrong field. As we tested in our local environment, if you set the row group on LastDateOfClipEntry, it will render the data as the screenshot you post.
    Please check both Row and Column Group setting, make sure they are group on proper field.
    Reference:
    Tables, Matrices, and Lists (Report Builder and SSRS)
    Understanding Groups (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Last stocktaking date for item

    Hi,
    Is anyone knows how can i check the last stocktaking date for item (by select query)?
    Thanks in advanced,
    Avi

    In SBO we can perform Stocktaking (In SBO menu: Inventory>inventory transactions>Initial Quantities, Stocktaking and Stock Posting).
    how can i check when (in which dates) Stocktaking was performed for specific item (Stocktaking history)?
    Thanks
    Avi

  • How to find Last Payment date for vendor

    Hi,
    I am working on ALV  Vendor report details.
    1) How to find the last payment date for the vendor.
    2) In input paramter field  
        PARAMETERS: L_FILE  LIKE  RLGRAP-FILENAME.
       I want to validate the user input in the selction screen for downloading the file in the presentation server..
      what is the validation I have to write for the path name.
    pl help me give details.
    Thanks in advance.
    sharma

    1) use table REGUH field ZALDT or VALUT
    2) use fm like EPS_GET_FILE_ATTRIBUTES
    A.

  • TS4057 I did this and now my videos are not working. They show the pictures aren't there on some and on others it shows they are there, but doesn't show them in the player. When I try to Share anything it just says Waiting for Processing for hours. What d

    I did this and now my videos are not working. They show the pictures aren't there on some and on others it shows they are there, but doesn't show them in the player. When I try to Share anything it just says Waiting for Processing for hours. What do I do?
    I also got Motion and can't figure out how to use it with Final Cut Pro X. Any help woud be great. Thanks

    I have no idea what may have caused your MacBook to stop working, but from your description it kind of sounds like it may have started before you ran Software Update and installed the new Apps. Just the general slow feeling and bugginess is what tips me off. You said that you weren't sure if you had closed all open windows, that doesn't matter if the computer restarts itself. It automatically closes all other open applications when restarting.
    As to your data being retrievable, if when you take it in they do a fresh install of the OS, then no, it will not be unless you want to pay several thousand dollars to a software retrieval company.
    I am glad to hear that you have taken into the Apple Store to get it fixed, and that you have all of your purchased music backed up to your iPod. You should be able to just transfer it all back to iTunes once you get your computer back should it be necessary.
    As a side note, the proper place for this topic would probably in the MacBook forums, not iTunes since there is no evidence that iTunes started the issue.

  • I accidentally deleted the admin user and it wiped out everything, luckily it wasn't much, but is my computer going to be completely overloaded with data from the last user? for example, i had to redownload microsoft 2011 do i have little space now?

    i accidentally deleted the admin user and it wiped out everything, luckily it wasn't much, but is my computer going to be completely overloaded with data from the last user? for example, i had to redownload microsoft 2011 do i have little space now?

    i accidentally deleted the admin user and it wiped out everything, luckily it wasn't much, but is my computer going to be completely overloaded with data from the last user? for example, i had to redownload microsoft 2011 do i have little space now?

  • Trying to add podcasts to shuffle I tunes says they are there but when I play them only a few are available?

    trying to add podcasts to shuffle I tunes says they are there but when I play them only a few are available?

    Hello rhdarby2,
    Thank you for using Apple Support Communities.
    For more information, take a look at:
    iPod shuffle: Playing audiobooks and podcasts
    http://support.apple.com/kb/HT1831
    Adding Audiobooks and Podcasts to iPod shuffle
    The Autofill feature of iTunes will not add audiobooks and podcasts to any iPod model. They can be manually added by dragging them to the iPod shuffle in iTunes.
    For iPod shuffle (3rd generation), you must enable Manually manage music in the Summary tab to drag songs to iPod shuffle. Additionally, you can automatically sync audiobooks using the Music tab and sync podcasts using the Podcasts tab in iTunes.
    Have a nice day,
    Mario

  • Updated to 10.4.1 and can't see the menu titles or the song names, even though they are there and can be played. the other categories (tv, apps, etc) seem to be OK.

    i just upgraded my pc to windows 7 and itunes to 10.4.1, but i can't see the menu items at the top left of itunes.  they are there, because if i move my mouse over the area where they should be, i see and can select from the drop down menus.  this problem also affects my music library; i cannot see the individual song names/artists/etc, but if i double click on the blank line it does play the song.  the app library and video library seem OK, only the music library is a problem.  also, when i connect my iphone, it recognizes it, but the main screen for my device has no words on it, just a picture of the phone.

    Hi, Sanjiv - My son fixed this problem for me by showing me that in addition to the visible volume slider at the top left of the iTunes window you also need to pull down the blue airplay menu right alongside that volume slider (the little blue box with the triangle). When you pull down that menu you will see volume settings for "computer" which controls the built-in speakers, plus a list of the other external speakers you may have set up using Airport. When I did that I saw that the volume on "computer" was right down at zero levl even though the main iTunes slider was at full level. When I selected the "computer" under "single" or "multiple" options and adjusted the volume it came back up. It worked for me, I hope it solves your issue too. Best, John.

  • How can we update the last synchronization date and time..on SUP in sccm 2012 R2

    Hi,
        Can you any one please guide me how can i update the last  synchronization date & time in SUP on SCCM2012 r2 , some how its updated as future date and when ever i try to synch the SUP with disconnected WSUS its shows in the wsyncmgr.log 
    "Wakeup for a polling cycle " and  " Wakeupby inbox drop" and "Wakeup by SCF change"  
    Thanks 
    Balaji K

    You'll probably have to call CSS on this one as this not normal by any means. The messages you noted above are completely normal but if that's all you are seeing then there's an issue.
    Have you reviewed wcm.log and wsusctrl.log?
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • What is happening in the most recent keynote when I click on a slide and it pulses (larger-smaller)  Two of my slides have disappeared in the navigator although if I play through them they are there.

    What is happening in the most recent keynote when I click on a slide and it pulses (larger-smaller)  Two of my slides have disappeared in the navigator although if I play through them they are there and the slides have their orignal number--there are just white spaces where the slide should be and I can only get to the slide by clicking through from the prior slide.  How do I get the sldies back into the navigator so I can see them.  Oddly, they are show up just find on the light table. 

    Try removing any transitions or builds on these slides, or delete the slides then recreate them as fresh slides.
    There are many playback anomalies in Keynote 6 which Apple have said they will be  sorting out next year.

  • I made a movie in iMovie then deleted the clips in it. I have reimported the clips in an event with the same name as previously and some clips in the movie are still saying source slip missing even though they are there. What can I do?

    I made a movie in iMovie then deleted the clips in it. I have reimported the clips in an event with the same name as previously and some clips in the movie are still saying source slip missing even though they are there. Some clips are fine in the movie, but most are just black and when I hover over them, it says source clip missing. How to I fix this? Thank You

    I did that too, then I did a migration assistant to a new Mac and ALL of my movies have Source Clip Missing now, even though the original clips are still in the iPhoto Videos.  I can stand to re edit one or two projects, but not ALL.

Maybe you are looking for

  • This is how to solve error-8008 problems

    Ok, this is how I fixed it. No one at apple told me to do this but it worked. First I found my Itunes folder on my computer. For most people this will be on their main drive (C:/Itunes) Within your itunes folder there is a folder named DOWNLOADS.(C:I

  • Backing up Ipad without lost Password

    Is it possible to backup an Ipad first generation iOS 5.1.1 WITHOUT a password if I have forgotten the password used to do previous backups?  I do not need to do a Restore.  I have tried doing the backup in a computer where I have never backed up thi

  • Oracle Reports 6.0

    I am trying to run a report thru a web browser but the problem is instead of my client machine the report preview is displayed on the server. please help. null

  • IPhone has broken links in mail

    I receive several mail with links from forums I visit. On my iPad I can just tab the links, but on the iPhone the links are broken, and when I tab them, the path to the forum thread is not existing. This has been a problem very long, please help.

  • Bugreport: imported Application can't be edited because it uses " in Name

    APEX 4.2.1 I imported an 4.0 Application into 4.2.1 which was successful. When trying to edit that Application in the Application Builder an error message is displayed saying that Application can't be edited because it uses invalid symbols like < and