Re: Creating Help for my App.
Re: Creating Help for my App.
- Subject: Re: Creating Help for my App.
- From: Hidetomo Katsura <email@hidden>
- Date: Tue, 14 Sep 2004 09:37:10 -0700
How can I create the Help for Help Viewer for my App.?
I found a documentation for Carbon Apps, and no for Cocoa Apps.
I'm using XCode.
i had the same question two days ago, and had to look all over the
internet for an example because the Cocoa OnlineHelp page doesn't have
any.
http://developer.apple.com/documentation/Cocoa/Conceptual/OnlineHelp/
http://developer.apple.com/qa/qa2001/qa1022.html
1. add CFBundleHelpBookFolder and CFBundleHelpBookName to Info.plist or
InfoPlist.strings (e.g. "My Help Book" and "My Help")
2. create "My Help Book" in English.lproj, and create index.html (see
below) in it.
3. add "My Help Book" folder to your project (uncheck "Copy items into
destination group's folder", and select "Create Folder References for
any added folders")
index.html
<HTML>
<HEAD>
<META HTTP-EQUIV="content-type"
CONTENT="text/html;charset=iso-8859-1">
<TITLE>My Help Page</TITLE>
<META NAME="AppleTitle" CONTENT="My Help">
</HEAD>
<BODY BGCOLOR="#ffffff">
<P>My Help!</P>
</BODY>
</HTML>
regards,
katsura
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden