vote up 5 vote down star

This is really annoying when you try to follow the documentation Squeak by Example.

Instead of calling the mouse buttons left, right, and middle, like in any other documentation, they give them colors. It's even suggested to label the mouse to help you learning.

It's 2009 and there are 3 dominant systems left: Windows, MacOS X, Linux

Why do they still stick to this naming scheme? How should I be able to sell this to co-workers, or even customers?

From Squeak by Example:

Squeak avoids terms like “left mouse click” because different computers, mice, keyboards and personal configurations mean that different users will need to press different physical buttons to achieve the same effect. Instead, the mouse buttons are labeled with colors. The mouse button that you pressed to get the “World” menu is called the red button; it is most often used for selecting items in lists, selecting text, and selecting menu items. When you start using Squeak, it can be surprisingly helpful to actually label your mouse, as shown in Figure 1.4.

Figure 1.4

flag

1  
You want to sell Squeak (an obscure, education based implementation of Smalltalk, a not really well supported language nowadays) to co-workers and/or customers? In that case, the naming scheme for the mouse buttons is gonna be the less of your worries. (I love Smalltalk --I'm just talking pragmatism here). – foljs Apr 25 at 15:15
@foljs: No, I gave up before that. I was just interested in the language, but it seems to be a waste of time if it is limited that way. – stesch Apr 25 at 17:52

9 Answers

vote up 5 vote down check

The button colors probably date back to the experiments at Xerox (where the mouse was invented). So maybe the question should be “why do current computers have colorless mouse buttons?” :D

As for sticking with the colors in the book, I think the reason was that the colors are still mentioned in the code, and colors don't always get mapped to the same fingers depending on the platform. But I agree, the color system is not very practical; probably the best would be to use primary/secondary/tertiary buttons?

link|flag
vote up 1 vote down

The labels left and right are avoided because left-handed people will have the buttons reversed. What does it mean when a lefty mouse has its right button clicked? Should the program perform its right-click action or its left-click action. If we simply swap the mappings, then right and left become rather meaningless to the programmer.

I assume the designers of Squeak wanted to avoid this thorny issue, so actions are labeled with colors which are agnostic to right/left.

link|flag
vote up 2 vote down

Squeak is a SmallTalk tool. Obviously they feel compelled to abstract the buttons into something less specific.

It appears they've blurred the line between reality and code constructs.

link|flag
vote up -1 vote down

There is no rational reason for this - for some reasom Smalltalkers seem impelled to throw up barriers to acceptance of the language whenever possible.

Having said that, if you sit down and use the Squeak IDE for a an hour or so, your fingers will soon learn which bitton to press. And once you get used to it (and have customised it so that you can actually read the menus etc.) the IDE is quite fun. I like playing with Morphic, for example.

link|flag
vote up 4 vote down

That's one of those things you take with a grain of salt. :) I read that the other day, and I will certainly not go out of my way to add some colourful buttons to my mouse.

Just mentally substitute "left-click" for red, etc.

link|flag
vote up 4 vote down

It's ridiculous. Left and right are already abstract concepts. Naming the buttons with colours is an abstraction of an abstraction.

link|flag
1  
Well, colors were very concrete on the original mice for the Xerox Alto, it's just a standard that didn't live. – Damien Pollet Apr 15 at 9:14
No, Left and Right are not "already abstract concepts". Where does that come from? We call the Left mouse button such because it actually is in the left. Left handed people still get confused by this --which goes to show that it is not an abstract concept. – foljs Apr 25 at 15:12
vote up 1 vote down

This legacy is so 70ies, I hope that Pharo will fix this.

link|flag
vote up 1 vote down

Contrary to what Damien said, the mouse was not invented at Xerox; rather, it was invented by team at Stanford Research Institute led by Douglas Engelbart as part of their revolutionary ONLINE system.

The coloring of the buttons is an old, old convention, one that I personally tend not to pay much attention to. The odd thing about that image you posted, though, is that the right button ("yellow" in Smalltalk parlance) appears more green than yellow--at least, to me. Does it appear that way to anyone else? Perhaps this is in part why the coloring convention was dropped elsewhere (and ought similarly be abandoned in Squeak).

link|flag
1  
Germans were first: heise.de/newsticker/… – stesch Apr 30 at 20:53
vote up 1 vote down

The paragraph that was quoted has been echoed among the answers as well: the "left-click" might or might not come from the button on the left - and the "right-click" might or might not come from the button on the right.

A pet peeve of mine is the talk of a "third button" - which almost always is in the middle. The sequence is not 1-3-2 but 1-2-3. Perhaps that third button should be a color too....

link|flag

Your Answer

Get an OpenID
or

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