Inconsistent behavior when selecting single or multiple messages

Mail seems very sensitive when selecting messages, either single or multiple. It often opens a message I have single clicked on (I do not use the pane) so that I could delete, and when selecting multiple messages for deletion or filing it often opens them all up as if i double clicked on the last one selected even though i didn't double click. This happens with both an external mouse and when using the trackpad button on my PB, and i have moved the double click settings all the way to the far right but that still didn't fix it. I have never had this problem with any other program, and I regularly select multiple messages in Entourage and never accidently open multiple copies.
I am glad that Mail warns you if you are up above a certain number so it won't accidently open 50 messages in 50 windows, but it is still annoying. Is there any fix for this or is Mail just extra sensitive to message selection somehow? I swear it opens messages sometimes with a single click though. Any thoughts/ideas/solutions are appreciated.
Thanks,
-Lewis

okay, i've just begun using Mail so perhaps it's just something that i am doing that i can learn to change, but if anyone else has experienced this and has any hints as to what i'm doing or what's going please let me know. it happens quite frequently and is very annoying. i gave mail a shot on another computer a couple of years ago and i don't remember if this happened or not, but this is the first time i've used it consistently.
thanks!
-lewis

Similar Messages

  • Has anyone experienced this strange behavior when selecting a region of an image in preview?

    When I select a section of an image that has the height and/or width of one pixel, the bounding box does the strange thing pictured to the left (at around 6x mag).  The box starts out the correct dimension on that axis (i.e., 1 px), but tapers down to 0 px by the other end of that line.  Below is an example (at 80x) if a 1 x 2 px box.  Depending on the direction you sweep the mouse when selecting the box can also appear as a single diagonal, horizontal, or vertical line.
    Copying and pasting the selection demonstrates that this does not have an effect on the shape of the selection, only on how it is displayed.
    I don't suppose that this is anything but a curious little bug with no impact on performance, though it could be confusing to some small subset of users.

    Interesting but I do not see this in my Preview/cropping.
    see the annotation:

  • When selecting one cell, multiple cells highlight

    When I am working with Excel 2010, I try to select a single cell however multiple cells get highlighted. It will highlight usually the next 5-6 cells in the same row. It occurs randomly on random cells, but happens about 25% of the time. If I click the
    cell and it does its highlighting thing, I usually have to click away in another cell and then re-click the first one to get it to go away. Also, if I just try to ignore the highlighted cells and try to work as normal, when I try to tab to the next cell in
    the row, it will only let me tab between the cells in the column that are highlighted. It is not a mouse problem, I am not accidentally selecting multiple cells, and it happens on documents I created as well as documents others have created. It will also happens
    on a new, blank document or others completely stripped of any kind of potentially hidden formatting. I have not tried to re-install Office yet, but that will be next step if no one has a solution. Thanks

    I ran into this problem today working in Excel 2010 at 90% zoom.
    First I tried F8 and Shift+F8 but neither of them worked.
    Next I changed the zoom levels up and down and this worked while I was at a different zoom level than the document was saved in but went back to the same problem when I tried working at 90% zoom again.
    Finally I came across the fix mentioned below from July 2, 2012 that suggested switching from Normal View to Page and then to Print view and back to Normal and this worked!!! Thanks to all for your input below, you saved my Monday morning!
    LIST OF POSSIBLE FIXES:
    1. Try using the F8 and/or Shift+F8 [extend selection] to toggle back and forth.
    2. Change zoom level of your document up or down [this was only a temporary fix for me].
    3. Change page layout between Normal, Page Layout, and Page Break Preview (the 3 boxes at the bottom right hand corner of excel spreadsheet) then back to Normal.

  • TS3899 How do I select and delete multiple messages from mail?

    How can I select mutiple messages in my inbox and send them all to the trash without selecting each message and trashing it? Using the "Mark All" command does not give me that option--only the "Flag" and "Mark as Read" options.

    I know there is no delete all option within Mail app but this workaround does the trick
    1. Go to your inbox
    2. Press Edit
    3. Tap any message once to select it
    4. Press AND HOLD the Move button
    5. While still holding the Move button, tap the message you selected
    6. Release the Move button
    7. This will bring up a dialog box asking you which folder you’d like to move all your messages to – just select the Trash folder and you’re all done

  • Inconsistent behavior when placing a file in a transformed frame

    I've been playing around with the sample plug-in SnippetRunner's SnpPlaceFile::PlaceViaHelper() method to allow it to place a file inside a frame.<br /><br />If a frame is selected, I compute boundsInParentCoords as follows:<br />  InterfacePtr<IGeometry> itemGeometry(selectedItemRef, UseDefaultIID());<br />  boundsInParentCoords = itemGeometry->GetPathBoundingBox();<br />and in the call to layoutHelper.PlaceFileInFrame(), I use the frame's UIDRef (selectedItemRef) as the parentUIDRef but I get the database for the importFileCmdData->Set() method using the active layer UIDRef.<br /><br />This works fine, unless the frame has been transformed before I do the place, in which case it works in some cases and not in others. Specifically, it works for Scale, Rotate, Horizontal Shear, and Horizontal Flip, but it doesn't work (i.e., the image is placed at the wrong location) for Translate, Vertical Shear, and Vertical Flip.<br /><br />Can anyone explain why this works in some cases and not in others? Is there something else I'm suposed to be doing? Or maybe I'm going about this all wrong. In either case, I need help. Thanks.<br /><br />Bob

    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    public class SetAlwaysOnTop {
        private JFrame frame;
        public SetAlwaysOnTop () {
            frame = new JFrame("Set always on top frame");
            JPanel panel = new JPanel(new BorderLayout());
            panel.add(new JLabel ("Top Label"),BorderLayout.NORTH);
            JButton dialogButton = new JButton("Show Dialog");
            dialogButton.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    createDialog();
            panel.add(dialogButton,BorderLayout.CENTER);
            frame.setContentPane(panel);
            frame.pack();
            frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
            frame.setVisible(true);
        private void createDialog() {
            final JDialog testDialog = new JDialog(frame,"Modal Frame",true);
            JPanel closePanel = new JPanel(new BorderLayout());
            JButton close = new JButton("Close");
            close.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    testDialog.dispose();
            testDialog.setLocation(50,50);
            closePanel.add(close);
            testDialog.setAlwaysOnTop(true);
            testDialog.setContentPane(closePanel);
            testDialog.pack();
            testDialog.setVisible(true);
        public static void main (String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    SetAlwaysOnTop top = new SetAlwaysOnTop();
    }

  • Inconsistent Behavior When Displaying Word Document

    I use the following code to display an OrdDoc object on a web page using a servlet. When the object is a Word document and it is being displayed for the first time, the Word application handles the document. The second time it is displayed, the IE browser plug-in handles the document. Can you tell me why this is so? How can I get the Word document to just display in the IE browser everytime? Image objects are consistently displayed in the browser. Thank you.
    OrdDoc ordDoc = (OrdDoc)rset.getORAData(1,(ORADataFactory)OrdDoc.getORADataFactory());
    OrdHttpResponseHandler handler = new OrdHttpResponseHandler(actionRequest.getHttpRequest(),actionRequest.getHttpResponse());
                   handler.sendDoc(ordDoc);

    The ORDDoc type will not be able to recognized the WORD document and set the mimetype attribute correctly. Thus when you populate the object you should set the mimetype attribute yourself using the setMimeType() method of ORDDoc.
    When the object is fetched and sent on by the HttpResponseHandler, the handler will use the mimetype setting to set that field in the Response header. This should help browsers to handle the content correctly.

  • Unable to use Instant messanger or SMS in Yahoo Mail. When selected the pop up message box does not open.

    While using Yahoo Mail I have a contact trying to IM me. I go to Conversation and there is no dialog box that shows his message. Yet at the top of the tab it says "Keith sent you a message". I also go to open a new message box for Instant messenger or SMS I should get a pop up box for that application. I am using FireFox 9.0.1 for a browser and my OS is Win.7.

    known issue, See:
    * https://bugzilla.mozilla.org/show_bug.cgi?id=713014
    this issue maybe fixed in Beta, you should try
    * firefox.com/beta

  • Inconsistent behavior when switching application windows with command ~

    When using Safari, Firefox, and most other applications, I find that I can quickly toggle through each application's open windows using the <command><~> key combination.  However, some applications (such as Preview) seem to ignore this command.  I was just wondering it there is a way to configure non-compliant applications to respect this key sequence.  I just find it far more convenient to use a keystroke macro than reaching for the mouse.
    Thanks

    OK now I plugged in and switched back to mac and it is working properly...
    I think this is a weird problem...

  • Mail crashes when moving multiple messages

    I've had this same problem for a while now.
    I originally noticed the problem on my 3GS, did all the resets and restores as many have suggested, still the same problem. Upgraded to a 4 and started fresh again (did not restore old setting) and still the same problem. I have updated to every new version of iOS as they have been available in the past year or so and no updates seem to help either.
    It happens for me either when deleting or filing emails. I usually dont even notice it freezes until i look at my phone after some time, check mail, the app hangs for 10-15 seconds, it crashes, starts back up automatically and it shows some emails moved and some didn't (ex. I delete 10 emails, after the crash emails 1-7 deleted and emails 8-10 are still in my mailbox) It seems to happen more frequently when I try move multiple messages between folders quickly which leads me to believe its locking up as a result of the sync'ing.
    If it matters, I have two active sync acounts setup. I have noticed the problem though even if I remove one of the accounts.
    P.S. I posted similar information as above to a past in the iPad forum that sounds almost exactly like the problem I have been seeing. Just wanted to start this new thread in the iPhone forum to see if anyone has any new information or if others have a similar issue and have pin-pointed the problem.
    https://discussions.apple.com/thread/3125968

    Use the Search window, up and right from where you're reading this, to look for other threads and posts talking about the same thing. You may discover a solution that will work for you.

  • ESB/File Adapter - XML files containing multiple messages

    Hi,
    In all the examples on file adapters I read, if files contain multiple messages, it always concerns non-XML files, such as CSV files.
    In our case, we have an XML file containing multiple messages, which we want to process separately (not in a batch). We selected "Files contain Multiple Messages" and set "Publish Messages in Batches of" to 1.
    However, the OC4J log files show the following error:
    ORABPEL-12505
    Payload Record Element is not DOM source.
    The Resource Adapter sent a Message to the Adapter Framework which could not be converted to a org.w3c.dom.Element.
    Anyone knows whether it's possible to do this for XML files?
    Regards, Ronald

    Maybe I need to give a little bit more background info.
    Ideally, one would only read/pick-up small XML documents in which every XML document forms a single message. In that way they can be processed individually.
    However, in our case an external party supplies multiple messages in a single batch-file, which is in XML format. I want to "work" on individual messages as soon as possible and not put a huge batch file through our ESB and BPEL processes. Unfortunately we can not influence the way the XML file is supplied, since we are not the only subscriber to it.
    So yes, we can use XPath to extract all individual messages from the XML batch-file and start a ESB process instance for each individual message. But that would require the creation of another ESB or BPEL process which only task is to "chop up" the batch file and start the original ESB process for each message.
    I was hoping that the batch option in the File adapter could also do this for XML content and not only for e.g. CSV content. That way it will not require an additional process and manual coding.
    Can anyone confirm this is not supported in ESB?
    Regards,
    Ronald
    Message was edited by:
    Ronald van Luttikhuizen

  • Selecting and Dragging multiple clips - CS6 Sniper mode

    With the introduction of ability to select Edit Points, now it's inconvenient to drag multiple selected clips or add clips to selection because in some cases - depending on timeline zoom state and/or clip duration. The edit points are altered instead of the clips, that behaviour drives me nuts. It leads to a necessity to do one of the following actions before selecting and/or dragging multiple clips with comfort:
    sniper mode - put the cursor over a place in the selection where the cursor will not indicate Edit Point trimming mode.
    to avoid loosing selection when using sniper mode - Group the clips after adding every clip to selection and/or after a dragging operation
    dynamically change zoom state so that you will not have to use sniper mode
    use copy/cut/paste - may involve a necessity to do additional pre-pasting steps
    IMHO, this behaviour should be rethinked.
    How fast it was in CS5.5 and older versions:
    Please, Premiere Pro Programming Team, especially Tim Gogolin, Steve Hoeg, Peter Lee, Gerry Miller, James Mork, Vivek Neelamegam, Axel Schildan, Jerry Scoggins, Sven Skwirblies, Tod Snook, Jesse Zibble, rethink the behaviour of selecting and dragging clips. Start giving links to beta-versions to other editors too, not only to editors like Philip Bloom.
    Selecting edit points is sometimes helpful and sometimes distracting.
    To get the best of two worlds (CS6 edit points vs. CS5.5 and older) - a switch could be added to Keyboard Shortcuts list, like the "hidden" Add Clip Marker shortcut.
    Let's name it "Application > Sequence > Select Edit Points".
    When Shift- or Shift+Alt- key is pressed and some Clip is selected, clicking on an edit point of another clip should add a clip to selection in the same way as previous versions of Premiere Pro did:
    To drag clips in legacy sniper-free mode only a switch can help. Let's name it "Application > Sequence > Select Edit Points when Multiple Clips are Selected".
    To add comfort to the editing process - selecting/dragging multiple clips - additional switches cannot be avoided. Additionally you may add an option to the Preferences > Trim:
    Allow Selection tool to choose Roll and Ripple trims without modifier key
    Allow Selection tool to select Edit Points while multiple Clips are selected
    Feature Request/Bug Report Form
      ******BUG******
    Concise problem statement:Inconveniences when selecting and dragging multiple clips
    Steps to reproduce bug:
    1.Create a Selection of multiple clips with Shift+Click
    2.Try to drag the clips
    Results:With the introduction of ability to select Edit Points, in some cases (depends on timeline zoom state and/or clip duration) now it's inconvenient to select and drag multiple selected clips because the edit points are selected instead of the clips
    Expected results:Clips should be selected/dragged like in CS5.5 and older
    Link: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

    With all due respect Kevin, nobody at Adobe has the right to change a program SO drastically.  I am also a mouse person, and am MUCH faster using the mouse, vs the keyboard. 
    When people have invested YEARS into a program like Adobe, they get used to things, how things work, the feel of a program.  I really don't see how you all can just change it on a whim.  IF you are going to do this, BOTH methods should still work.  You cannot just stop the way people are used to editing.  You can't just decide to change a program so drastically, that it doesn't feel like a program we have grown to love over many long years.  If Adobe on a whole is changing things, just because a few people in your company voice opinions like I've quoted below, it's not the way to go.  Adobe should be really putting feelers out there, and seeing how people are really using the program.  Things should be getting easier, more powerful, sure that's natural, but you can't just decide to remove things that mouse users do every day. :-(
    Upgrading a program, and changing it to this degree, are two different things in my book.  I have not yet upgraded, but it is very scary - the things I'm seeing.  For one, way way too many bugs.  The amount of bugs on so many boards being reported are just beyond comprehension. 
    And a final note, I for one, am very glad Steven is posting these videos ( I'd like to hear him go through steps though - just watching the video with no audio of what he is doing is not so great, however after watching some of his posts, he's knows what he's doing, and has a good head to think with )
    I mostly read posts, but I thought I would voice my opinion, if none of us speak up, nothing will get changed.  I'm really hoping that Adobe implements some change in the next revision .5 or whatever it will be called.  Reading posts like this one are really depressing.  Did you watch Steven's video on a simple task as moving multiple clips around on a timeline ?  Doing this with a mouse just isn't going to work for many, removing simple tasks by way of using a mouse would stop me from upgrading.
    Please address this in upcoming updates.
    Dave.
    Kevin Monahan wrote:
    I went to NLE school in Hollywood in the 90's. Their mantra was, "never touch the mouse." I rather like the fact that I need to touch the mouse much less in CS6, but this is my personal opinion and the way I was trained.

  • Cannot select multiple messages in a sequence diagram

    In sequence diagrams, deleting multiple messages is tedious because multiple messages cannot be selected by using a selection rectangle.
    1) If the rectangle contains a single message, its object is also highlighted. So when multiple messages are selected, the corresponding objects are selected.
    2) If the selection rectangle overlaps a single line of the combined fragments box, the entire box is selected.
    I could same time if Studio used normal CTRL conventions. In other applications, holding down CTRL has two possible results.
    1) If the item to be selected is not highlighted, then that item becomes highlighted and is added to the selection group. Studio does this.
    2) If the item to be selected is already highlighted, then that item becomes non-highlighted and is removed from the selection group. Studio does not do this. So I cannot use a selection rectangle, then selectively use CTRL to remove unwanted items from the selection.
    Can anyone suggest a way of selecting multiple messages?
    As a side issue, does anyone know how to remove individual items from a selection?

    TreySpiva wrote:
    Have you tried using the Shift key when selecting?It's the same problem. Selecting one or more messages also highlights the sending and receiving objects associated with the messages. Pressing DELETE at this point would also delete the objects.

  • Toggling between single and multiple selection in a table

    I am working on ADF faces. I need to switch between single and multiple selection in <af:table based on a button I select.
    I cannot use switcher or rendered property inside <af:table. Only the first one is rendering the second one is not rendering based on the switch
    <f:facet name="selection">
    <af:tableSelectMany autoSubmit="true"
    rendered="#{treeBean.multipleRows}"/>
    </f:facet>
    <f:facet name="selection">
    <af:tableSelectOne autoSubmit="true"
    rendered="#{treeBean.singleRows}"/>
    </f:facet>
    When I use inside the switcher, it doesn't like the parent.
    Any ideas would be greatly appreciated.
    Thanks,
    Vijay.

    I have probably misunderstood what your issue is. I do not know what your version of ADF faces is. Here is some sample code working with my version. Please check if your jdev has "rowSelection" attribute. If it has, please try my sampe code
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:afh="http://xmlns.oracle.com/adf/faces/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces">
    <jsp:directive.page contentType="text/html;charset=utf-8"/>
    <f:view>
    <af:document title="tableSelectMany Demo">
    <af:form>
    <af:panelGroup layout="vertical">
    <af:messages/>
    <af:selectOneChoice value="#{sessionScope.tableSelection}"
    autoSubmit="true"
    id="selType"
    label="Selection Type">
    <af:selectItem label="Single" value="#{null}"/>
    <af:selectItem label="Multiple" value="#{true}"/>
    </af:selectOneChoice>
    <af:table summary="Periodic table"
    binding="#{tableActions.table}"
    partialTriggers="selType"
    rowSelection="#{sessionScope.tableSelection ? 'multiple' : 'single'}"
    value="#{periodicTable.tableData}" var="row" rows="10">
    <af:column>
    <f:facet name="header">
    <af:outputText value="Name"/>
    </f:facet>
    <af:outputText value="#{row.name}"/>
    </af:column>
    <af:column>
    <f:facet name="header">
    <af:outputText value="Symbol"/>
    </f:facet>
    <af:outputText value="#{row.symbol}"/>
    </af:column>
    <af:column>
    <f:facet name="header">
    <af:outputText value="Action Column"/>
    </f:facet>
    <af:commandButton immediate="true" text="Action"
    action="#{row.action}"/>
    </af:column>
    </af:table>
    </af:panelGroup>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>

  • IOS 4 Error: "Unable to Move Messages" when Deleting Multiple Messages

    Using an iPhone 4 and IOS 4.x (all versions to date including 4.1) if I'm in the All Inboxes view and use Edit to select multiple messages from more than one Exchange account and then delete them I get the following error:
    Unable to Move Messages
    The messages could not be moved to the mailbox Trash.
    Deleting multiple messages from a single Exchange account is fine, but when selecting messages from more than one account the message pops up as many times as messages I'm trying to delete. I currently have three Exchange accounts on both 2003 and 2007 servers. This issue persists across multiple iPhone 4s as well as after a complete restore and manual setup of the Exchange accounts from scratch.

    Not sure if this will work for the first poster, but it might for you, Busta999.
    I have my email set up as an IMAP account and was getting the same "unable to move..." message for individual deletions. I suspected the problem for me had to do something with the trash bin on the phone and the trash bin on the server not communicating properly. I tried this and it worked for me, although from other posts, I see it doesn't work for everyone:
    1. Go to "Settings"
    2. Select "Mail, Contacts, Calendars"
    3. Select the mail account in question
    4. Select "Account Info"
    4. Select "Advanced"
    5. Select "Deleted Mailbox"
    6. Under "On My Server", Click the "Trash" folder (or whatever your trash folder is called on your server). This should put a check mark beside it.

  • How to show multiple messages for a single exception

    hi
    Please consider this example application created using JDeveloper 11.1.1.3.0
    at http://www.consideringred.com/files/oracle/2010/MultipleMessagesExceptionApp-v0.01.zip
    It has a class extending DCErrorHandlerImpl configured as ErrorHandlerClass in DataBindings.cpx .
    Running the page and entering a value starting with "err" will result in an exception being thrown and multiple messages shown.
    See the screencast at http://screencast.com/t/zOmEOzP4jmQ
    To get multiple messages for a single exception the MyDCErrorHandler class is implemented like
    public class MyDCErrorHandler
      extends DCErrorHandlerImpl
      public MyDCErrorHandler()
        super(true);
      @Override
      public void reportException(DCBindingContainer pDCBindingContainer,
        Exception pException)
        if (pException instanceof JboException)
          Throwable vCause = pException.getCause();
          if (vCause instanceof MyMultiMessageException)
            reportMyMultiMessageException(pDCBindingContainer,
              (MyMultiMessageException)vCause);
            return;
        super.reportException(pDCBindingContainer, pException);
      public void reportMyMultiMessageException(DCBindingContainer pDCBindingContainer,
        MyMultiMessageException pException)
        String vMessage = pException.getMessage();
        reportException(pDCBindingContainer, new Exception(vMessage));
        List<String> vMessages = pException.getMessages();
        for (String vOneMessage : vMessages)
          reportException(pDCBindingContainer, new Exception(vOneMessage));
    }I wonder if calling reportException() multiple times is really the way to go here?
    question:
    - (q1) What would be the preferred use of the DCErrorHandlerImpl API to show multiple messages for a single exception?
    many thanks
    Jan Vervecken

    fyi
    Looks like using MultipleMessagesExceptionApp-v0.01.zip in JDeveloper 11.1.1.2.0 (11.1.1.2.36.55.36) results in a different behaviour compared to when used in JDeveloper 11.1.1.3.0 (11.1.1.3.37.56.60)
    see http://www.consideringred.com/files/oracle/img/2010/MultipleMessages-111130versus111120.png
    When using JDeveloper 11.1.1.2.0 each exception seems to result in two messages where there is only one message (as intended/expected) per exception when using JDeveloper 11.1.1.3.0 .
    (Could be somehow related to the question in forum thread "multiple callbacks to DCErrorHandlerImpl".)
    But, question (q1) remains and is still about JDeveloper 11.1.1.3.0 .
    regards
    Jan

Maybe you are looking for

  • How to print in black and white

    I am new to Mac, and notice that I cannot do two things: 1. I cannot print selected text by right clicking 2. and , I cannot print anything in Black and white, even though my HP computer is set at black only on the host PC it is connected to. Even if

  • From problem

    Dear all, i have a table item_detail( box_id, item, item_name) box_id is foreign key i want to build a form like master detail form using only this one table. i build a form with multiple records and place the box_id in the top with display number of

  • Length of numeric string

    When generating an accountId - I append a numeric onto the end of a derived string. I need to determine the overall length of the accountId because I have a size limit. However, when I try to get the length of a numeric string (like "17") I get 0 - s

  • How to diagnose HTTP 500 Internal Server Error

    Hi all, I have installed SSM 7.5 SP05 Hot Fix 1 on a Windows 2003 Server (64 bits), but in the End User Interface, the Home and Strategy tabs always shows an HTTP 500 Internal Server Error, how can diagnose this kind of error in order to solve this p

  • Upgraded to DW CC 2014.1, FTP/SFTP isn't working at all

    There's a HostNexus webserver I usually connect to but since I upgraded to DW CC 2014, it only spits back errors. I can connect successfully to the server in FileZilla (using FTP explicit). I've looked through the forum and tried various suggestions