Adding a Help Menu
A majority of these instructions come from the HTML file placed at /Developer/Documentation/Apple Help/Tutorial/Tutorial.htm on the Mac OS X hard drive.

  1. Create your help file and save it in an HTML format. A good place to save it would be in the same folder as your project is stored in, under a new directory called Help.
  2. Click on the Resources folder in the file view.
  3. Go to the Project menu and select Add Files.
  4. Find the folder which will contain the help files (in this example the folder is named Help), and click the Open button.
  5. Click on the "Create Folder References for any added folders" radio button, and then click the Add button.
  6. Click on the Targets tab, then on the application's target.
  7. In the Application Settings panel, set the Identifier for the application to be something unique like com.yourcompany.yourapplication. In this example, I put com.edenwaith.edenmath
  8. Hit the Expert button and add the two custom help keys with string values, CFBundleHelpBookFolder, and CFBundleHelpBookName. These should be set to the name of the added help folder (Help, in this case), and the AppleTitle (EdenMath Help) defined in t he main help file. An alternative method to this step is to add the CF values in the info.plist file. Refer to http://www.oreillynet.com/pub/a/mac/2001/05/25/mac_help.html for these instructions.
  9. This meta tag needs to be in the header portion of your main help HTML file: <meta name="AppleTitle" content="MyCoolApp Help">
  10. To add a custom 16x16 icon which is used with the Mac OS 10.2 Help Viewer, add the following code to your main help file: <META NAME = "AppleIcon" CONTENT = "Help/my-cool-icon.gif">. Make sure that my-cool-icon.gif is in the Help folder and it has been included into your project in Project Builder.