Uli's Web Site
[ Zathras.de - Uli's Web Site ]
Other Sites: Stories
Pix
Abi 2000
Stargate: Resurgence
Lost? Site Map!
 
 
     home | blog | moose | programming | articles >> blog

 Blog Topics
 
 Archive
 

15 Most Recent [RSS]

 Less work through Xcode and shell scripts
2011-12-16 @600
 
 iTunesCantComplain released
2011-10-28 @954
 
 Dennis Ritchie deceased
2011-10-13 @359
 
 Thank you, Steve.
2011-10-06 @374
 
 Cocoa Text System everywhere...
2011-03-27 @788
 
 Blog migration
2011-01-29 @520
 
 All you need to know about the Mac keyboard
2010-08-09 @488
 
 Review: Sherlock
2010-07-31 @978
 
 Playing with Objective C on Debian
2010-05-08 @456
 
 Fruit vs. Obst
2010-05-08 @439
 
 Mixed-language ambiguity
2010-04-15 @994
 
 Uli's 12:07 AM Law
2010-04-12 @881
 
 Uli's 1:24 AM Law
2010-04-12 @874
 
 Uli's 6:28 AM Law
2010-04-12 @869
 
 Uli's 3:57 PM Law
2010-04-12 @867
 

More...

UI in Browsers - two observations

Being the user interface nut I am, every time I use an application, I mentally 'take apart' its UI to remember the stuff I like and don't like, to be able to apply that knowledge to my own applications. Object-Oriented programming (in particular with Cocoa) has made this extremely easy, as a lot of the stuff that makes a GUI great can be packed into a nice reusable class and thus only needs to be written once. Here's today's discoveries:

  • Firefox has URL completion in its Preferences! E.g. when you enter the "Home Page" URL to show in newly opened windows, it will offer completion suggestions.

    While most browsers these days provide completion in their URL bar (some better than others, but that's a rant for another day), almost none of them provide it anywhere else where URLs are specified. It's great to see such a seemingly obvious but completely overlooked UI gem come out of the open-source world -- maybe there's hope yet...

    Now, wouldn't it be great if there was a URL text field to provide that behavior across all apps? I could see something with auto-completion and a little popup menu like in NSSearchFields that shows the bookmarks from the user's browser (filtered by scheme, of course), and drag and drop support so it can create URL clippings on the desktop, which is one of my most-used Mac features...

    Right now I don't have a web-enabled app that takes URLs, so I won't be writing it anytime soon, but if anyone else does, let me know.
     
  • On the downside, there's a keyboard shortcut that's been causing people around me grief: Many browsers accept the delete (backspace) key as a shortcut to the "back" button. Now imagine my dad sitting at the computer, accidentally clicking while trying to correct what nonsense Safari's auto-completion has done again... It removes the selection from the URL field and ... huh? Where'd the page go?

    Not to mention that "delete" is inherently a dangerous key. Using it for such a simple shortcut as "go back" is counter-intuitive and only waters down the meaning users have attached to most keys. Reserve dangerous keys for dangerous actions, and harmless keys for harmless ones. That way, the connection between "be careful" and the delete key gets hard-wired into the user's brain, and they're encouraged to verify the cursor is where they expect it to be when they fearfully hesitate that split-second before pressing delete.

    Besides, in an application where you frequently enter text, what business does the app's developer have placing a shortcut on a common text-editing key that doesn't use a modifier key? I'd say go with Command-LeftArrow (Control-LeftArrow on *nix and Windows) for back, and make delete beep when pressed without a keyboard focus.
     
It's been a good day. One bad experience, one good one. I like that :-)
 
Created: 2004-12-05 @679 Last change: 2004-12-05 @698 | Home | Admin | Edit
© Copyright 2003-2024 by M. Uli Kusterer, all rights reserved.