![]() |
|
|
by Sven Ryen There's a known fact in application development: "Developers are not users." Making an application that meets the goals and expectations of its users is a pretty hard task you really need to know a lot about the potential users. On top of that, novice users will expect to be helped by the documentation, should they ever run into obstacles while using your software. Documentation can come in many formats: printed manuals, PDF/standalone documents, and online help systems. In this article, I'll cover the online help systems provided by Apple and discuss how to develop online help for your applications. The available Help systemsThere are currently three online help systems provided by Apple: Apple Help, Balloon Help and Help Tags. Let's have a brief look at how online help on the Mac has evolved. With System 7, balloon help was introduced. Some years later, System 7.5 introduced the Apple Guide, with its extensive walk-throughs that led users through any task by using integrated on-screen animation. It was, by no doubt, a great utility. Sadly, it was also a highly complex and proprietary tool; you had to read a 500 pages book and learn a scripting language to put the guides together. It was not the ideal tool from the developer's point of view. With MacOS 8, Apple moved some of their help content to a MacOS Help Center that was accessible through any web browser. Further following the HTML trend, a Help Viewer was included with MacOS 8.5. With Mac OS 9.2, Apple Guide is no longer supported. Mac OS X also dropped support for balloon help in favor of a new system know as Help Tags. Apple HelpAccessed through the Help Viewer and written purely in HTML, this help system allows for quick development and offers search capabilities for the end user. In addition to cross-referenced text, you may
All this is accomplished by using specific tags in the HTML documents. The tags are all documented in Providing User Assistance With Apple Help, a 42-page document from Apple. A development toolkit includes documentation on Apple Help, a tutorial and several Help Book examples. You really should download this toolkit, even if you feel capable of producing help pages without the need of a tutorial, as it includes an essential part: The Apple Help style guide. Before you start authoring help for your application, you should study the style guide, as it will help you grasp the thoughts this help system is based on. The style guide is not verbose, provides short texts grouped under compelling topics. It's in fact constructed as a Help Book, so while you read it, you'll also gain experience in how the pages in a Help Book are linked together. To get a quick introduction in developing Help Books, I would suggest reading An Introduction to Apple's HTML-based Online Help System, a MacTech article. Balloon HelpBalloon help was introduced to answer questions like "What does that little gizmo in my window do, and why is it disabled?" It's also a neat place for developers to put Easter eggs (figure 1). The language and use of words in help balloons is thoroughly covered in chapter 11 of the Macintosh Human Interface Guidelines. If you want a more technical and detailed coverage on the use of Help Ballons, Chapter 3 of "Help Manager (More Macintosh Toolbox)" is explains everything about these balloons. If you are creating Carbon applications, Balloon Help is no longer available, as it is not supported in Mac OS X. You should consider using Help Tags instead.
Help TagsAlthough I haven't found any reports discussing why the concept of Balloon Help was abandoned, Apple has done away with them and are now offering Help Tags instead. The text in Help Tags is, in general, shorter than what was offered trough balloon help. Whereas help balloons could include styled multi-line text and even images, Help Tags consists of one line of text. On the plus side, Help Tags are always available. You don't need to use a menu command to show or hide them. On the down side, Help Tags take a while to appear; there's no way to invoke them instantly, as you may with Balloon Help. The concepts of Help Tags are explained in chapter 12 of the Aqua Human Interface Guidelines) (pp. 202204). A separate PDF document offers guidelines for Writing Help Tags. Why Should I Include Online Help?You probably know the scenario the application is ready to ship, you've taken every precaution to make sure the interface meets the Guidelines from Apple (You haven't? Well, make sure you do, and then return when you're done!) there's just one tiny piece missing: The help system. You're probably in a hurry to get the application out the door and in the hands of your users, so you toss together a rough description of the services your application delivers, and list every single feature and command found in the application. Will such documentation help the user when he meets a problem? No. Will the user ever bother to read through the umpteen pages listing menu commands and preferences settings? No. So what use is there in providing an inadequate help system? None! In fact, you may even risk losing potential users just because they couldn't figure out how to use your application. Let's look at how documentation is treated by the average user. Hardly anybody opens it until they encounter a problem without an immediate or obvious solution. When such a situation occurs, they'll first try to figure out what to do by exploring the interface. If they're still stumped, they may turn to other users (co-workers, friends, etc) for help. If the solution is still unsolved after asking for help, they will head for your online help system, and that system would better provide an answer to their problem. What should the Help system includeIt should include answers to any question users of your application may have. You may also want to account for both novice and experienced users, if your application provides really advanced features. Troubleshooting is an essential topic that should not be neglected. You should always include a Getting started section that briefly covers how to use your application, and a quick outline of the most basic features it provides. If the application has recently been revamped to include new features, you may also provide a What's New section for those already familiar with the application. When you are about to construct the outline for your help system, take a minute to think about what services your application provides. Think in general terms do not simply list all features as they appear in the menus. What tasks will the user be accomplishing with your application? Thinking this way may help you organize the help system in a way that suits your users. For instance, if you are creating a word processor, some of your main topics may be:
When you assign pages to these categories, be task oriented. Under formatting text, you may (among other topics) expect to find a page named Applying styles to text, which explains how to use the style system your application provides. As said earlier, the key to success is reading and understanding the Apple Help style guide. What NOT to IncludeYou obviously should not include all information about the application in the online help system. Here is a quick list of topics that should be left out:
It's important to remember that the help system is there for the user. Users turn to Apple Help when they are experiencing problems or have questions about a feature. The Apple Help system is not a place to store all documentation for your application. Providing help from your applicationIf you've used the control panels in recent versions of the Mac OS, you may have noticed tiny buttons displaying a question mark. These buttons offer direct links to appropriate pages in the Help Center. If you want to make the help system more apparent to your users, you may consider including such buttons wherever appropriate. When and where to use the help button
There you go: use the help buttons whenever necessary or appropriate. You should also be aware of how the help button is perceived when used in a window that utilizes tabs. If the help button applies to all the tabs in the window, it should be placed outside the tab panes. If it provides help in context to the active tab pane, place it within the tab pane. ResourcesIntroductory Information on Apple Help An Introduction to Apple's HTML-based Online Help Systemhttp://www.mactech.com/articles/mactech/Vol.16/16.06/AppleHelp/ The MacTech article by William Allen. Designing Apple Help http://developer.apple.com/techpubs/macosx/Essentials/ AquaHIGuidelines/AHIGHelp.fm/index.html Covers Apple's philosophy of Help and briefly discusses the online help systems in Mac OS X. It also outlines from where you should provide access to the Help system. Writing and developing Apple Help content Apple Help Resource Pagehttp://developer.apple.com/macos/help.html Provides an overview of the current Apple help technologies along with links to other related resources. Apple Help 1.2 SDK 1.0 http://developer.apple.com/techpubs/macosx/Carbon/HumanInterfaceToolbox/ AppleHelp/ProvidingUserAssitAppleHelp/index.html Describes how Apple Help works and how you can use it. (also avaliable as PDF) Writing Balloon Help or Help Tags Balloon Help (Macintosh Human Interface Guidelines) (pp 316325)http://developer.apple.com/techpubs/mac/HIGuidelines/HIGuidelines-240.html Explains when to use Help Balloons, how to write them and wording for specific balloon types. Guidelines for Writing Help Tags [PDF] Technical references Apple Help Referencehttp://developer.apple.com/techpubs/macosx/Carbon/HumanInterfaceToolbox/ AppleHelp/Apple_Help/index.html A reference that describes the application programming interface (API) for registering help books and calling the Help Viewer application. Chapter 3 Help Manager (More Macintosh Toolbox)
[an error occurred while processing this directive] |
|
|
The Interface Mafia - www.interfacemafia.org |