When delete message viewer goes to previous email not to the next one

In mail 3.1 message viewer if I delete a message instead of going to the next unread message in the list it goes back the previous message in the list. The messages are sorted with most recent message first. When reading mail there are some messages that I want to hold for subsequent action. So I just want to continue scanning all of my new mail. Is there a way to do this? Never had a problem with this in Netscape, Outlook or Thunderbird.
The second problem is when I double click on a message to bring it up in a single window, when I delete it the window goes away and I have to double click on the next message in the message viewer. Again, I would like the next unread message to appear in the single window.
Thanks.

I think this is the expected behavior, but feel free to report : http://www.apple.com/feedback/macosx.html

Similar Messages

  • When I try to use FaceTime on my Macbook Air, I try to verify the email I want people to call me with, and it says verified, but soon an message comes up that says "Could not verify the email address. Please check your network connection and try again."

    So our school lets us use Macbook Airs for the school year, and it has facetime on it. I know facetime isn't blocked because like everyone else is using it. So I decide to give it a try. I click the icon, it says enter your apple ID. I dont have one, so I click to make one, and do so. I then enter my apple ID and click next. The screen reads "People will call you using your email address. What email address would you like to use?" I enter my email address in the box below the message, and then go to my email and click the link, and sign in, thus verifying the email. I go back to the facetime window, and click next. At the top it says Verified, but when I click next it doesn't go on to the next step, it simply blacks out the next button so that I can not click it, and after a few minutes a message comes up that says "Could not verify the email address. Please check your network connection and try again."
    So that is the issue, please help!!!!!
    *Note-I repeat that I know it is not blocked by the school because everyone else uses it just fine.*

    Hello BassoonPlayer,
    Since you are using one of the the school's Macbooks, it is quite possible that the time and date are not properly set on the computer that you are using.  FaceTime will not work if you do not have the proper time zone set up for the location that you are in.  This past week, there were a two other Macbook users I've helped by simply telling them to set the Date/Time properly.  By the way, you described your problem very well, which makes it easier for us to help you.  Hope this solves your problem -- if not, post back and I can suggest other remedies.
    Wuz

  • How can I delete an attachment from a received email but save the message?

    Hi all, how can I delete an attachment from a received email but save the message?*

    Over the years this issue crops up again and again. Here are the cases I know about:
    Case 1 - it simply doesn't work
    I have a message in my inbox with a jpeg of about 300Mb. Select message, choose option "remove attachment" which is not greyed out, and it does not work.
    Case 2 - it works if you save the message first
    I move the message from the inbox to a mail box. Open the mailbox (select), select the message, choose option "remove attachment", result: the attachment is removed, a small text file is added and an error appears in the message "missing plug-in". The message size is reduced from 300Mb to a few bytes.
    Case 3 - the option "remove attachment" is greyed out.
    I've googled this at least 10 times and read all the advice about editing various files from the library and all the other hacks. The simple truth here is that the user should not be inconvenienced by such inappropriate behaviour. We're not used to this from Apple any more, not since OS X. Even Windows does this stuff painlessly. In fact this kind of function is something that Outlook and Exchange do incredibly well. If they didn't the corporate world would have ground to a halt.
    My point: the remove attachment option should work all the time and should be redesigned. Right-click + save as + delete in the message would be a hundred times easier.

  • My MacBook Pro will not start. When I started it goes to a gray screen with the Apple logo and has the spinning dial. When I started in safe mode it will not start. In safe mode it as an error message that says MacBook Launch_msg():Socket is not connected

    My MacBook Pro will not start. When I started it goes to a gray screen with the Apple logo and has the spinning dial. When I started in safe mode it will not start. In safe mode it as an error message that says MacBook Launch_msg(): Socket is not connected

    If running 10.7 or later hold down Command-R at Startup.
    This should invoke recovery Mode.
    Choose Disk Utility.
    Select your Hard drive. Inspect the SMART Status in the lower right of the window for "Verified".
    Select the Mac OS X Volume (originally Macintosh HD) click (Repair Disk)
    If errors, run again until it comes clean or gets stuck.
    Report any error messages.

  • HT2500 managing e-mail? why does my email open the next one when I delete one?

    I am lost on why my e-mail keeps poping open the next one when I delete one?
    I would like to clean out e-mails that I know are junk without having to open them.
    thanks for your help.

    Try some basic steps if you have issues with web pages:
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How would I make it so that when "deleting" an image I can make it so that the delete key does it or a button I put on the application?

    How would I make it so that when "deleting" an image I can make it so that the delete key does it or a button I put on the application?
    I want it so that I can use either a button on the designer window or the delete key. I know how to do the or part but the trouble I'm having is coding the button in.
    if (LastImageClicked != null && (e.Key == Key.Delete || Button))
    This is the code that I have in the format I'm looking for I just don't know how to do it. Thanks for your help!

    There are a number of things which are unclear about your question.
    I'll tell you one way to approach this though.
    Handle Window.PreviewKeyDown.
    <Window
    Window.PreviewKeyDown="Mainwindow_PreviewKeyDown"
    Code behind
    private void Mainwindow_PreviewKeyDown(object sender, KeyEventArgs e)
    if (e.Key == Key.Delete)
    File.Delete("p001.jpg");
    I don't know enough about what you mean by LastImageClicked  but you need some way of knowing which path you are going to delete.
    Then you might well have a problem if it's showing in an image control.
    You will need to copy the picture off disk into a new bitmapimage object.
    If you just do
    <Image Source="p001.jpg"
    Then that image will grab the file and you won't be able to delete it - you'll  get an error.
    In my experimental code p001.jpg is set as content copy always so it ends up next to the exe in the bin when the solution compiles.
    You would probably want a full path to a file there.
    Hope that helps.
    Recent Technet articles:
    Property List Editing;  
    Dynamic XAML

  • When i open iTunes i get this message "iTunes: iTunes.exe - Entry Point Not Found" "The procedure entry point RefAudioFileWritePackets could not be located in the dynamic link library CoreAudioToolbox.dll." how do i fix this!

    when i open iTunes i get this message "iTunes: iTunes.exe - Entry Point Not Found" "The procedure entry point RefAudioFileWritePackets could not be located in the dynamic link library CoreAudioToolbox.dll." how do i fix this!

    Taken at face value, you're having trouble with an Apple Application Support program file there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept.)
    Let's try something relatively simple first. Restart the PC. Now head into your Uninstall a program control panel, select "Apple Application Support" and then click "Repair".
    Does iTunes launch properly now?
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post:
    Re: I recently updated to vista service pack 2 and I updated to itunes

  • In IPhoto 11 I have made an album and rearrange the photos in the order I require them. When export the album to allow me to burn them to disk to be viewed in Windows they do not maintain the same order. What am I doing wrong?

    In IPhoto 11 I have made an album and rearrange the photosin the order I require them. When export the album to allow me to burn them todisk to be viewed in Windows they do not maintain the same order. What am I doingwrong?

    When you sort the Album in iphoto are you sorting manually? Or by date of the photos?
    When you sort in the Finder how are are you sorting?
    Here's one way to do what you're trying to do:
    Create your Album and sort the pics as you want them. Then Photos Menu: Batch Change -> Set Title to Text "John's Birthday", for instance, and tick the box to append a number to each Photo. Now your photos are titled 'John's Birthday 001, John's Birthday 002 ... etc'
    Then File -> Export and in the Export dialogue set the Filename to "Use Title"
    Sort on Filename in the Finder and you end up with a folder full of images in the same order as the Album in iPhoto.
    Regards
    TD

  • Getting error when I try to remove eum secondary email address from the Mailbox from Exchange 2013 server

    Getting error when I try to remove eum secondary email address from the Mailbox from Exchange 2013 server. The command works if you issue directly from the server exchange shell.
    I open the remote power shell to the exchange server 2013.
    Issue the following commands and getting the following error.
    $mailbox = Get-Mailbox -Identity testuser$mailbox.EmailAddresses -= "eum:50004;phone-context=telExt5digits.lync5.com"Then getting the following error:Method invocation failed because [System.Collections.ArrayList] doesn't contain a method named 'op_Subtraction'.
    At line:1 char:27
    + $mailbox.EmailAddresses -= <<<<  "eum:50004;phone-context=telExt5digits.lync5.com"
        + CategoryInfo          : InvalidOperation: (op_Subtraction:String) [], RuntimeException
        + FullyQualifiedErrorId : MethodNotFoundHelp!

    Now for an answer - your remote session doesn't have the same object you have on the server itself.  Notice it says this is an array list, not a ProxyAddressCollection.  If you need to work around this, you'll need to massage the addresses another
    way that the system will accept.  I'd try the following:
    $NewAddresses = $mailboxEmailAddresses | ? { $_ -notlike "eum:50004;phone-context=telExt5digits.lync5.com" }
    See what you get in the $NewAddresses variable when you do this.

  • Receiving the following message when attempting to open a project, "Captivate could not open the fol

    Receiving the following message when attempting to open a project, "Captivate could not open the following project.  Ensure that the project is not open already...That there is sufficient hard disk space..." All the critiria are met....still can not open file.  Please assist with the recovery of this project.

    Suggestions here:
    http://www.infosemantics.com.au/adobe-captivate-troubleshooting/recover-corrupt-project

  • HT204022 I backed my old iphone up to my computer and bought a new iphone.  When i backed my new phone up I now I have an icloud photo (from my computer) album that I want to delete from my phone but I do not have the option.  Please help.

    I backed my old iphone up to my computer and bought a new iphone.  When i backed my new phone up I now I have an icloud photo (from my computer) album that I want to delete from my phone but I do not have the option.  Please help.

    If the album was synced to your phone from your computer, it can only be removed by sycing it off.  To do this, deselect the folder on the Photos tab of your iTunes sync settings and sync.

  • HT204266 I have some updates due on some Apps I have downloaded but when I try to update I get a message saying that my account is not in the UK store so must switch to Ireland before purchasing. Does anybody know how you change stores?

    I have some updates due on some Apps I have downloaded but when I try to update I get a message saying that my account is not in the UK store so must switch to Ireland before purchasing. Does anybody know how you change stores? I did not do this deliberately!

    Yup! Here:
    http://support.apple.com/kb/HT1311

  • When is adobe muse going to be able to use the ecommerce features in business catalyst?

    when is adobe muse going to be able to use the ecommerce features in business catalyst? I need to figure this out asap. my client is using one of your templates in business catalyst but we are designing the new site in muse. How do I transfer over there current ecommerce products over to my muse design?

    Attitude? No attitude. Just facts.
    As to:
    why is there a full version of Photoshop available on NON mac products now if that is the case?
    That would be because ADOBE wrote and released a version of it for those devices.
    Complain to Adobe and tell them you want iOS versions of the apps. Apple has nothing to do with it.

  • How can I make my imap email not take the emails off the server?

    How can I make my imap email not take the emails off the server when I delete them on my iPad?
    Can anyone help me whith this?
    I tried to use the pop account in gmail settings but that was downloading all my emails sice 2008 ( more than 300 deleted emails tha can only be found in the deleted email box), when I just have 5 or 6 email in the inbox .
    How can I solve this????
    Thank u all...

    I have the same problem. For years I have been able to delete emails from my ipad and have them remain on the server so I can deal with them on the desktop. Now they get deleted from the server when deleted from the ipad, which makes the ipad unless for reading mail.
    You answered to delete the email account on the ipad and set up a new one as a pop. I have made many attempts to do that in the  incomping mail server "Host Name" field but it always errors out even when the host name is equal to what my desk top has. So I can see no way to change away from IMAP. I started with an ipad 1 and now have an ipad 2.
    Rachael

  • Good day! When saving a file in Illustrator, I can not keep the older version. How You can save the file in an older version?

    Good day! When saving a file in Illustrator, I can not keep the older version. How You can save the file in an older version?

    When you save a file that's what options offers application
    05 мая 2014 г., в 13:40, Jacob Bugge <[email protected]> написал(а):
    sage go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click theStop Email Notifications link.

Maybe you are looking for

  • Windows 7 Boot Camp resolution capped at 1280x1024

    I have installed Windows 7 on my late 2009 21.5" iMac, using the bootcamp Assistant (v5.1.2) packed with Mavericks (OSX 10.9.5). The installation went smoothly, however my Windows screen resolution cannot go any higher than 1280x1024, and I would obv

  • Mail Server for windows...

    Is there any free mail server for windows that i could use to send emails from my application.. Its just that I have been trying the JavaMail Api and having no luck, despite help from some of you. And my deadline is closing in and I am no closer to t

  • Pavilion dv9628nr no sound Windows 7

    Installed Windows 7  now I do not have any sound. Do you know of drivers to download to fix the problem.

  • Not able to update a contract using BAPI

    Hi All, I am tryin to use a BAPI to update the contract and for this I have coded the following: v_ponumber = 'abc-123' .    MOVE v_ponumber  TO poheader2-number.     MOVE 'X'  TO poheaderx-number.     MOVE '00001' TO po_item2-ITEM_NO.     MOVE 'test

  • Itunes download failed to fully download, no ability to reload.

    For the third time now in my Itunes membership, I have paid for a music album only to find that most of the songs did not fully dowload. Although the system says the songs are dowloaded. I play the song and about half way though, the song skips to th