vote up 6 vote down star
3

In pretty much all applications that have a menu bar, some of the items have an ellipsis (...) after them, and some don't. Is there a well known convention on when to put that ellipsis there and when not to? When do you do it? Do you do it?

I have looked at various windows applications, and this is what I have come to:

  • Ellipsis

    • Menu items which opens a form that require user input to do something (Replace, Go to, Font)
  • No ellipsis

    • Menu items which just does something (Cut, Paste, Exit, Save)
    • Menu items which opens a form that does not require user input (About, Check for Updates)

But then there always seems to be menu items that doesn't follow this rule. For example the Help items (How do I, Search, Index) and the Find and Replace (Quick Find, Find in Files, Find Symbol) in Visual Studio.

So after thinking about it a bit more I know think this might be the thing:

  • Ellipsis

    • Menu items that will definitely open a modal window.
  • No Ellipsis

    • Menu items that opens a non-modal window.
    • Menu items that doesn't open any window.
    • Menu items that most likely won't open a modal window (Like Save, which does open a modal window if you haven't saved before or something like that, but otherwise don't)

What do you guys think?

flag

Of course you could write one of them newfangled WPF or AJAX applications. No need to follow conventions then! But the user will be so awed by the beauty, they won't mind not being able to use the app. :) – MarkJ Mar 12 at 8:30

6 Answers

vote up 13 vote down check

The crucial factor is whether the menu option requires additional confirmation before it carries out the operation. So Help-About doesn't require an ellipsis, but File-Open does. That's what the Microsoft, Apple and KDE guidelines say anyway.


Microsoft Windows applications are supposed to follow Microsoft's "User Experience Guidelines". Here's what they say about ellipses on menu items.

While menu commands are used for immediate actions, more information might be needed to perform the action. Indicate a command that needs additional information (including a confirmation) by adding an ellipsis at the end of the label.

This doesn't mean you should use an ellipsis whenever an action displays another window—only when additional information is required to perform the action. For example, the commands About, Advanced, Help, Options, Properties, and Settings must display another window when clicked, but don't require additional information from the user. Therefore they don't need ellipses.


David's answer cites the KDE 3 user interface guidelines,

Notice that every item in a menu that first opens a dialog requiring additional information must be labelled with a trailing ellipsis (...) (e.g. Save As..., Open...). There's no space between the menu item and the "...". A simple confirmation dialog is not considered a dialog that requires additional information.


The Apple Human Interface Guidelines say:

When it appears in the name of a button or a menu item, an ellipsis character (…) indicates to the user that additional information is required before the associated operation can be performed. Specifically, it prepares the user to expect the appearance of a window or dialog in which to make selections or enter information before the command executes. Because users expect instant action from buttons and menu items (as described in “Buttons” and “Menu Behavior”), it's especially important to prepare them for this alternate behavior by appropriately displaying the ellipsis character. The following guidelines and examples will help you decide when to use an ellipsis in menu item and button names.

link|flag
Very nice summary and overview =) – Svish Mar 12 at 14:38
The rule is additional information is required to complete the command, not additional confirmation. In fact, commands that simply ask for confirmation without asking for additional information don't require an ellipsis. – Tmdean Oct 21 at 3:45
vote up 3 vote down

Raymond Chen has the answer.

link|flag
In that post, he doesntt just tell you to follow the link, he repeats the important info in the post. Maybe you should do the same in your answer? No offence – MarkJ Mar 12 at 8:15
vote up 2 vote down

As far as I understand this, (...) a the end usually means that user will be asked for some input. And no (...) means that no input is needed.

link|flag
vote up 2 vote down

According to the KDE 3 user interface guidelines,

Notice that every item in a menu that first opens a dialog requiring additional information must be labelled with a trailing ellipsis (...) (e.g. Save As..., Open...). There's no space between the menu item and the "...". A simple confirmation dialog is not considered a dialog that requires additional information.

So it looks like your discovery is basically correct. Of course, KDE's guidelines are not any sort of universal standard, but they were developed to make KDE behave the way most people expect a window manager (cough Windows cough) to behave, so they're probably pretty similar to the equivalent guidelines used by MS (or, say, Apple).

link|flag
Yep, similar to the MS Windows guidelines. See my answer. – MarkJ Mar 12 at 8:15
vote up 0 vote down

You're right, that about sums it up. If you want to know more, you can find a list of User Style Guides here: http://www.experiencedynamics.com/science-usability/ui-style-guides

link|flag
vote up 0 vote down

I'd agree, that matches my own perception of when to include the ellipsis fairly well.

I guess the point of the ellipsis is to "warn" the user, so that she can understand that a certain choice is safe to explore, it won't immediately do something without asking for more information through a dialog.

In some programs, like (at least older version of) Autodesk's Maya (a high-end 3D modelling package), the ellipsis was actually a small dialog-icon. You could click the icon, in the menu, to get the icon, or click the rest of the menu item (the text) to repeat the command with the same settings as last time, or something like that. It seems that idea didn't catch on and become mainstream.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.