home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-11-21 | 743 b | 28 lines | [TEXT/NTP1] |
- // Copyright © 1993-1995 Apple Computer, Inc. All rights reserved.
-
- // app constants
- constant kAppMaxWidth := 240 ;
- constant kAppMaxHeight := 336 ;
-
-
- // read in the book
-
- bookFilePath := HOME&"Help Book Source.f" ;
-
- // open resource fork for pictures
- ref := OpenResFileX(bookFilePath);
-
- // load in the book... this sets up a global variable "book".
- // *** Note: you MUST remove the "output.book" and "output.help" lines
- // *** from the Help source, otherwise it will not compile correctly.
- // *** See the BookMaker 1.1 release notes for more info.
- load(bookFilePath);
-
- // Also note that the warnings about Unknown global function "MakePage"
- // and "MakeBlock" can be ignored; they're normal.
-
-
- // close the resource file
- CloseResFileX(ref) ;
-
-