My various mail boxes now and then gets the Exclamation sign

Why does the other mail boxes on m Mobile Me account - now and then get the Exclamation Point the the wheel keeps spinning?
What causes that and how do I fix it?

You're not alone - I haven't found a reliable solution, and keep hoping it doesn't happen that often.
I just click on that icon...if that doesn't work, a dialog usually pops up asking if the account should be brought back online. I suspect you've been thru this part tho

Similar Messages

  • PSE 9 was running fine but will not start now and I get the following message:  This application has requested the Runtime to terminate in an unusual way.

    PSE 9 was running fine but will not start now and I get the following message:  This application has requested the Runtime to terminate in an unusual way.
    I have an HP Desktop running XP Professional and tried Restore but it didn"t help. I was just going to uninstall and re-install but I can't get in to deactivate.

    See if anything here helps:
    Troubleshoot C++ runtime errors | Adobe products | Windows

  • I updated to Yosemite and now Iphoto says it's incompatable.  Downloaded the new version 3 times now and still get the same message.  Restarted Macbook twice and still same problem

    I updated my Macbook Pro to Yosemite this morning, (it took almost 2 hours!), and now iPhoto tells me it's incompatable with Yosemite and I need to download the latest version.  I've done that 3 times now and restarted twice, (just in case) and I still get the same message, incompatable...download the latest version of iPhoto.
    Frustrating as ****!

    The "latest" version is a bit ambiguous. The App Store may be only showing you the latest version you bought, not the most recent version.
    Which version did you download?
    You need to install iPhoto 9.6 and launch this version. If you previously have been running a version of iPhoto 8.x.x., you cannot update, but need to buy the upgrade to iPhoto 9.6 from the "Featured" tab of the App Store..
    Then launch iPhoto from the Applications folder. The Dock icon may still be tied to the older version.
    Also, depending on the version you upgraded from, you may need to run the iPhoto Library Upgrader, if your iPhoto Library has been created by iPhoto 7.1.2 or earlier, see this link:   iPhoto '11: About the Library Upgrader

  • How to automatically populate text boxes from dropdown and tick box options and then sum the results

    Firstly I need to say that I have no knowledge of how to use Javascript.
    I am using the 30 day trial of Adobe Acrobat XP Pro to see if it can be used for a Membership Application Form for the 1st year of membership. This 1st year  has a pro-rata membership fee per month left in the year of application along with a pro-rata postage fee for non-UK members. All of the input will be via basic text boxes with the exception of the application date and overseas postage for which I have created 3 dropdown boxes, one for Day, one for Month and one forYear and for the 2 tick boxes which are there for the applicant to say if they want 2 other options which have a cost attached to them.  I want to populate 2 text boxes from the Month lookup. One of these is for the pro-rata membership fee and the other for the pro-rata overseas postage. The other 2 optional items will be text boxes populated from the tick boxes. Having populated these 4 text boxes I then want to have them automatically summed to give the total to be sent by the applicant.
    I have searched many forums and tried many of the suggested ways of doing it and none of the 4 text boxes are populated.
    Are you able to help me with this?
    Many thanks

    The script solution provided is a "custom calculation JavaScript" not a "simplified field notation".
    The comment at the top of the code:
    // Custom calculate script for text field
    should help clarify the placement location for the code.
    Simplified field notation has a number of specific restrictions. One is that the provided data must be numeric data only.

  • Get line that contains and then get the second and fourth line after that.

    So I have a text file and I want it to find all the lines in the file that contain an @ symbol and then I want it to get that line and the line second and fourth from that line. Then I would export it like this:
    $linewith@ + ":" + $secondline + ":" + $fourthline
    Finding the lines with an @ symbol is easy, but how would I tell it to get the second and fourth line after the line with an @ symbol?
    So I would get the lines with something like this:
    foreach ($line in [System.IO.File]::ReadLines($filename)) {
    if($line.contains("@")){}

    That worked perfectly thanks man! Here is the entire code. I'm sure it could been cleaned up. I'm still learning powershell. 
    $username = "Username"
    $password = "Password"
    $url = "http://URL"
    $ie = New-Object -com InternetExplorer.Application
    $ie.visible=$false
    $ie.navigate($url)
    while($ie.ReadyState -ne 4) {start-sleep -m 100}
    $ie.document.getElementById("username").value = "$username"
    $ie.document.getElementById("password").value = "$password"
    $ie.document.getElementById("click").click()
    start-sleep 20
    $ie.Document.body.innertext | Out-File -FilePath c:\web.txt
    $links = $ie.Document.getElementsByTagName('A')
    $logout = $links | where {$_.innerText -eq 'logout'}
    $logout.click()
    start-sleep 5
    (gc C:\web.txt) | ? {$_.trim() -ne ""} | set-content C:\web.txt
    ( Get-Content C:\web.txt | Select-Object -Skip 2 | ForEach-Object { $_.TrimStart( " " ) } ) | Set-Content C:\web.txt
    start-sleep 5
    $fileContents = Get-Content C:\web.txt
    foreach ($line in $fileContents) {
    if ($line -like '*@*') {
    $line + ":" + $($fileContents[$line.ReadCount+0]) + ":" + $($fileContents[$line.ReadCount+3]) | Out-File -FilePath c:\finish.txt -Append

  • If I decide to use the monthly membership and then get the hard copy will I still have to pay the monthly fee

    If I purchase the monthly plan for lightroom and then decide to get the hard copy instead will I have to pay for the remaining months still

    If you are in the US there are no carriers who will activate an iPhone for voice only. If you have an iPhone you must have both voice and data plans.

  • [Automator] Using an ls command and then getting the finder items?

    So i want to make an automator app that looks for all external hard drives and then ejects them. Unfortunatly to my experimentation you cant use the finder actions to search in the root directory so i simply added a shell script with
    ls /Volumes
    which works.
    then i have a Filter finder items so it doesnt try to eject the Macintosh HD
    then i have eject Disk.
    The problem lies in that the shell script does not spit out finder items to the filter so the filter throws a warning because it isnt supplied the required data.
    My question is, how do i get the shell script to pass down finder items to the filter so everything else runs through smoothly?
    EDIT: i have python installed if that helps for simplicity i also know a small bit of C
    Thanks
    Tom Copcutt

    Where did he say that? He only stated that he wanted to avoid ejecting the HD, which isn't possible in any case.
    If avoiding .dmg is the issue, one way would be to hard code the possible disk names by using a list like this:
    Replace the example volume names with your own volume names inside the curly brackets below;
    Names must be quoted and comma separated as shown.
    Spaces in names ARE allowed. You can name as many or as few volumes as you wish.
    set gDiskList to {"External1 500GB", "Time Machine HD", "External2 HD", "External3 45GB"}
    repeat with i in gDiskList
              set i to quoted form of i
          try
                        do shell script "diskutil umount " & i
              end try
    end repeat

  • My iphone is cutting out and then when the apple sign appears i have tried to restore it on my macbook and it come up with an error any suggestions as to what i can do?

    its really weird my iphone just cut out yesterday and nothing was working hard reset anything left it on a docking station all night and this morning when i woke up the apple sign appeared, have tried doing a hard restore and to no success. It has now blacked out again any suggestions?

    very odd just replugged i phone into docking station where it asked me to plug into itunes restore is now working

  • HT1222 when ever i try to download a software update it says in order to continue please close the following thing and then gives the software sign for i tunes  what does that mean i hit quit installer and it stops downloading

    when ever my computer aletts me to new softwatr to download I begin and then a message appears saying In order to continue downloading I need to close the itunes application I hit quit installer and the entire stops or I try to continue downloading and it will not let me

    You should close safari.

  • HT4208 Hi my email says verified and a tick yet I cannot download any apps?  I have entered my apple id and click install and then get the message 'you have not verified your apple id.' Yet when I logged in on my laptop as mentioned it shows verified

    I have requested a verification email to be sent and this has not come through - requested yesterday.

    Have you clicked on the link directly?
    It should say 'Verify Now>'
    Try again.

  • Since upgrading to ios7, apps just say waiting and then get the app cannot be downloaded at this time message. We run a proxy server, devices running ios6 have no problems. Anyone know what the problem is? I think apple just needs to fix its new OS.

    I work at a school running 10 iPads. We connect to the internet through a proxy server. Prior to iOS7 we had no issues, the devices still on iOS6 work perfectly.
    All devices which have been upgraded to iOS7 cannot download apps. I can find the apps in the store, choose to download them, but the icon hangs for a while before returning the "app cannot be downloaded at this time message". Help.

    I have this same exact issue. We have even put all apple servers as not even being filtered by proxy and it still wont download anything. Nor will it let us even log in or create a new acct in the app store. It seems its also not just app store related....as it won't even let you check for IOS updates when a proxy is entered.
    If anyone has any ideas let us know!

  • SQL help, how to group by column A and then get top frequency of column B?

    Assuming the following table, operation represents each kind of transaction operation
    table operation employee other column c
    '<' id1
    '<' id1
    '<' id2
    '*' id3
    '/' id1
    question, for each operation, which employee do the most? which employee do the 2nd most?
    I thought I need to group by operation first, and then get the frequency of employee, and get the top 1 or top 2 frequency highest.
    But I am stuct, and do not know how to write the sql.

    998408 wrote:
    Assuming the following table, operation represents each kind of transaction operation
    table operation employee other column c
    '<' id1
    '<' id1
    '<' id2
    '*' id3
    '/' id1
    question, for each operation, which employee do the most? which employee do the 2nd most?
    I thought I need to group by operation first, and then get the frequency of employee, and get the top 1 or top 2 frequency highest.
    But I am stuct, and do not know how to write the sql.Welcome to OTN. Ops! posted in wrong forum. Just post in {forum:id=75}. Before posting there close this thread marking as answered.
    If someone's response is helpful or correct, please mark it accordingly.*

  • I recently changed my internet service provider and my e mail address. I updated my iTunes account with the new e mail. Now I cannot get updates on my devices, because the login box on each still contains my old e mail. How can I change this please?

    I recently changed my internet service provider and my e mail address. I updated my iTunes account with the new e mail. Now I cannot get updates on my devices, because the login box on each device still contains my old e mail, and I do not know how to change this How can I change this please?

    Try tapping on the id in Settings > iTunes & App Stores on your devices (Settings > Store if they aren't on iOS 6+) and then log back in and see if that 'refreshes' the account on them.

  • My iphone 3g stays on the apple logo for about 4 minutes then flashes white and goes back to the apple screen, it repeats untill battery is flat,  every now and then im lucky enough to get it to turn on but not very often and then it freezes and repeats??

    hello my name is kirstie, i updated to firmware 4.2.1 .....my iphone 3g stays on the apple logo for about 4 minutes then flashes white and goes back to the apple screen, it repeats untill battery is flat,  every now and then im lucky enough to get it to turn on but not very often and then it freezes and repeats the same problem?? (if i turn the phone off my pressing the two buttons it wont keep rebooting, its only when i leave it after turning it on)
    I have reset the phone, full firmware restore, even downgraded back from firmware 4.2.1 to .3.1.3 official by using dfu mode and still doesnt fix.
    (i correctly got out of dfu mode after the downgrade)
    i can enter dfu mode and recovery, and update through itunes with no problem, but it doesnt fix the problem,
    i have searched and found no answer to this problem, every option availible to try that i know of i have tried and failed. i dont care about preserving my content i just want a fix. i have a good understanding how to operate software on a computer and shouldnt be too confused by any advice given, so plz even if the answer is very complex i wish to try anything, please help me to get my iphone working.

    Anyone have any suggestions? or is everyone else just as clueless as me !

  • Every now and then I get about a half second clip of another song

    Every now and then I get about a half second clip of another song at the end of a song. If you immediately go back and play the same again, you get the same little burp at the end. But if you play three or four songs and then go back, the little burp is not there. I did a restore on the ipod, and I am still getting the little burps. It only happens maybe once out of every 10 songs played.
    Files are MP3's which play fine on the PC in WMP and itunes, and on Dell DJ15, Zune and Sansa MP3 players. Some of the MP3s were ripped from CD using MusicMatch, some recorded off old lps using Creative Go!, and some downloaded so I don't think it is an issue with the MP3s themselves. Since I use several different players, I don't want to maintain a separate AAC library just for the ipod.
    Usually the burst is so short that you can't even tell who the artist was, but when I have recognized it was always something very close alphabetically - at the end of a Cream song I got a little Creed, at the end of a Bad Company song I got a little Bachman-Turner Overdrive, at the end of a Led Zeppelin track I got a little Linkin Park.

    Does this help?
    http://docs.info.apple.com/article.html?artnum=61638
    Using Windows, the only answer would seem to be to re-encode them using iTunes.

Maybe you are looking for